.logoimg {
    width: 50px;
}
a:hover,
:hover {
    text-decoration: none;
}

.bg-scd-clr {
    color: #b97036 !important ;
}

/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    background-color: var(--neutral-light);
    color: var(--neutral-black);
    font-size: var(--font-size-12);
    line-height: 1.6;
}

.space-gap-main {
    padding: 0px var(--gap-17) 0px var(--gap-32);
}

/*  */

a,
i,
li {
    o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -moz-transition:
        color 450ms ease-in-out 0s,
        background-color 450ms ease-in-out 0;
    -ms-transition:
        color 450ms ease-in-out 0s,
        background-color 450ms ease-in-out 0;
    -o-transition:
        color 450ms ease-in-out 0s,
        background-color 450ms ease-in-out 0;
    -webkit-transition:
        color 450ms ease-in-out 0s,
        background-color 450ms ease-in-out 0;
    transition:
        color 450ms ease-in-out 0s,
        background-color 450ms ease-in-out 0;
}

a:hover,
:hover i,
li:hover {
    o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bg-light {
    background-color: #5b250d !important;
}

.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary {
    color: #ffffff;
}

.btn-sm-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-weight: normal;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 15px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: blue;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: black;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

.d-s-mb {
    margin-bottom: 0px;
}
/**banner**/
.banner {
    background: url(../../assets/images/leather-tuxture-1.jpg);
    color: #f1f1f1;
    height: 80vh;
}
.btn {
    padding: 0.5em 1.5em;
    border-radius: 2em;
}

@media screen and (min-width: 769px) {
    p {
        font-size: 1.2em;
    }
}
@media screen and (max-width: 768px) {
    .banner {
        padding: 2em;
        text-align: center;
    }
}
@media screen and (max-width: 567px) {
    img {
        width: 70%;
    }
}
/* banner slider */

.my-container {
    width: 100%;
    top: 30px;
    position: relative;
    width: 100%;
    height: 460px;
}
.my-container .image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 460px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;

    border-radius: 4px;
    animation: showIn 0.6s;
    animation-iteration-count: 1;
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
}
@keyframes showIn {
    from {
        -webkit-transform: translate(-50%, -50%) scale(0.3, 0.3);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1, 1);
    }
}

.image-slider {
    height: 460px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.image-container {
    display: none;
}

.image-container.active {
    display: block;
}

.my-container img {
    -webkit-transform: translate(-50%, -50%);
    width: 310px;
    -webkit-transform: rotate(-30deg);
    z-index: 999;
    transition: all ease-in-out 0.3s;
    margin: 0px auto;
    display: table;
    bottom: 0px;
}

.my-container .image-container .shadow-shoes {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 1000px;
    padding: 10px;
    z-index: 998;
    box-shadow: 10px 0px 146px 17px rgba(0, 0, 0, 0.75);
}

.my-container .image-container:hover {
    cursor: pointer;
}
.my-container .image-container:hover img {
    animation: floating 2s infinite;
    -webkit-transform: rotate(0deg);
    transition: all ease-in-out 0.3s;
}
@keyframes floating {
    0% {
        top: 10%;
    }
    50% {
        top: 5%;
    }
    100% {
        top: 10%;
    }
}

.button-next-prev {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    cursor: pointer;
    text-decoration: none;
    color: #111;
}
.button-next-prev::before {
    content: " ";
    top: -3%;
    position: absolute;
    background: black;
    padding: 1px;
    transition: all 0.3s;
    width: 0%;
}
.button-next-prev:hover::before {
    top: 100%;
    width: 100%;
    transition: all 0.3s;
}
.next-btn {
    right: -2%;
}

.prev-btn {
    left: 6%;
}
.prev-btn,
.next-btn {
    font-weight: bold;
    top: 60%;
    background: #fff;
    font-size: 12px;
    border-radius: 10px;
    padding: 5px 10px;
}

.hide-slider {
    -webkit-transform: scale(0.3, 0.3) !important;
    display: none;
    transition: all 0.3s;
}

.bannertext {
    color: #5b250d;
    height: 90vh;
    display: flex;
    align-items: center;
}

.bannertext p {
    color: #000;
}

.btn.btn-light {
    background: #5b250d !important;
    color: #fff;
    border: 1px;
}

/* button */
/*general styles for buttons*/
.generalBtn {
    margin: 10px;
    padding: 10px 15px;
    display: inline-block;
    cursor: pointer;
    color: #5b250d;
    font: bold 16px arial;
    text-align: center;
    text-decoration: none;
    border: 2px dashed #5b250d;
    border-radius: 0 6px;
    -moz-border-radius: 0 6px;
    -webkit-border-radius: 0 6px;
}

.generalBtn:hover {
    text-decoration: none;
    border-radius: 6px 0;
    -moz-border-radius: 6px 0;
    -webkit-border-radius: 6px 0;
    transition: 0.2s ease-in; /*animation effect*/
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
}

.chamoiseeBtn {
    background-color: #b97036;
    text-shadow: 0px 1px 1px #b97036;
    box-shadow:
        0 0 0 5px #b97036,
        1px 1px 4px 6px #b97036;
    -moz-box-shadow:
        0 0 0 5px #b97036,
        1px 1px 4px 6px #b97036;
    -webkit-box-shadow:
        0 0 0 5px #b97036,
        1px 1px 4px 6px #b97036;
    -o-box-shadow:
        0 0 0 5px #b97036,
        1px 1px 4px 6px #b97036;
}

.boneBtn {
    background-color: #e3dac9;
    text-shadow: 0px 1px 1px #fff;
    box-shadow:
        0 0 0 5px #e3dac9,
        1px 1px 4px 6px #7f7f7f;
    -moz-box-shadow:
        0 0 0 5px #e3dac9,
        1px 1px 4px 6px #7f7f7f;
    -webkit-box-shadow:
        0 0 0 5px #e3dac9,
        1px 1px 4px 6px #7f7f7f;
    -o-box-shadow:
        0 0 0 5px #e3dac9,
        1px 1px 4px 6px #7f7f7f;
}

.copperBtn {
    background-color: #b87333;
    text-shadow: 0px 1px 1px #d49869;
    box-shadow:
        0 0 0 5px #b87333,
        1px 1px 4px 6px #7f7f7f;
    -moz-box-shadow:
        0 0 0 5px #b87333,
        1px 1px 4px 6px #7f7f7f;
    -webkit-box-shadow:
        0 0 0 5px #b87333,
        1px 1px 4px 6px #7f7f7f;
    -o-box-shadow:
        0 0 0 5px #b87333,
        1px 1px 4px 6px #7f7f7f;
}
/* 4 boxex */
.stats-section {
    padding: 60px 20px;
}

.stats-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: #a57c6b;
    color: #fff;
    padding: 30px 24px;
    border-radius: 14px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stat-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #d78b47;
}

.stat-card h4 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 18px;
    color: #b17f59;
}
.stat-card p {
    font-size: 13px;
    line-height: 1.3;
    opacity: 0.9;
    color: #db9b7e;
    margin: 0px;
}

/* Tablet */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h2 {
        font-size: 32px;
    }
}

/* Brand Design */

.hero {
    margin-top: 20px;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}
.hero,
.curve-bg {
    background: url(../../assets/images/leather-tuxture-2.jpg);
    border-radius: 25% 25% 0 0;
}
/* Curved Background */
.curve-bg {
    position: absolute;
    top: 0px;
    left: -10%;
    width: 120%;
    height: 300px;
    z-index: 0;
}

.brandcontainer {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Box */
.brand-box {
    background: #0b8f55;
    color: #fff;
    padding: 30px;
    width: 340px;
    border-radius: 20px;
    position: relative;
}

Curved Cut .brand-box::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 40px;
    width: 80px;
    height: 80px;
    background: #e6fff4;
    border-radius: 50%;
}

.brand-box p {
    font-size: 15px;
    line-height: 1.5;
}

/* Logo Card */
.logo-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.logo-card img {
    max-width: 100%;
}

/* Right Content */
.content {
    flex: 1;
}

.content h1 {
    font-size: 38px;
    color: #065b3a;
    margin-bottom: 30px;
    font-weight: bold;
}

.content h1 span {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    display: table;
 }
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.item i {
    font-size: 20px;
    color: #0b8f55;
    margin-top: 4px;
}

.item h4 {
    font-size: 16px;
    color: #065b3a;
    font-weight: bold;
}

.item p {
   font-size: 16px;
    color: #000;
}

/* Button */
.btn {
    padding: 14px 32px;
    background: #0b8f55;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .brandcontainer {
        flex-direction: column;
        text-align: center;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .brand-box::after {
        display: none;
    }
}

/* More Products */

/* Section */
.discover {
    background: url(../../assets/images/leather-tuxture-3.jpg);
    padding: 60px 40px;
    color: #fff;
}

.discover h2 {
    text-align: center;
    font-size: 32px;
}

.discover h2 span {
    font-weight: 300;
}

.discover p {
    text-align: center;
    margin-top: 8px;
    opacity: 0.8;
}

/* Layout */
.discover-cards {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

/* Big Card */
.discover-card.big {
    position: relative;
    width: 45%;
    border-radius: 18px;
    overflow: hidden;
}

.discover-card.big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #5b250d;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discover-card-content small {
    font-size: 14px;
}

.discover-card-content h3 {
    font-size: 26px;
}

/* Arrow */
.arrow {
    background: #b97036;
    color: #000;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Right Cards */
.right-cards {
    width: 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.image-card {
    grid-column: span 2;
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Cards */
.info {
    padding: 20px;
    border-radius: 18px;
    position: relative;
}

.info h3 {
    font-size: 28px;
}

.info strong {
    display: block;
    margin-bottom: 6px;
}

.info p {
    font-size: 14px;
    opacity: 0.7;
    text-align: left;
}

.info .arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

/* Colors */
.light {
    background: #e6e6e6;
    color: #000;
}

.gold {
    background: #c2a66a;
    color: #000;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .discover-cards {
        flex-direction: column;
    }

    .discover-card.big,
    .right-cards {
        width: 100%;
    }

    .discover-card.big {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .discover {
        padding: 40px 20px;
    }

    .discover-card.big {
        height: 320px;
    }

    .right-cards {
        grid-template-columns: 1fr;
    }

    .image-card {
        grid-column: span 1;
        height: 180px;
    }

    .card-content h3 {
        font-size: 22px;
    }
}

/* home about */

/* Header */

.hm-about {
    padding: 100px 0px;
}
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.about-header p {
    font-size: 12px;
    color: #666;
}

/* Content layout */
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.left-content {
    width: 65%;
}

.left-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #7b3f36;
    line-height: 1.4;
    margin-bottom: 25px;
}

.left-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.brown-box {
    width: 330px;
    height: 160px;
    background-color: #7b3f36;
    border-radius: 4px;
    flex-shrink: 0;
}

.left-text {
    font-size: 13px;
    line-height: 1.6;
    color: #000;
    max-width: 100%;
}

.more-info {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #7b3f36;
    cursor: pointer;
}

/* Right box */
.right-box {
    width: 320px;
    height: 360px;
    background-color: #a99661;
    border-radius: 4px;
}
.brown-box,
.right-box {
    overflow: hidden;
}

.brown-box img,
.right-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */

/* Tablet */
@media (max-width: 992px) {
    .content {
        gap: 40px;
    }

    .left-content {
        width: 100%;
    }

    .brown-box {
        width: 260px;
        height: 150px;
    }

    .right-box {
        width: 280px;
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-content h3 {
        font-size: 16px;
    }

    .left-box {
        flex-direction: column;
        align-items: center;
    }

    .brown-box {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }

    .left-text {
        max-width: 100%;
        font-size: 13px;
    }

    .more-info {
        text-align: center;
    }

    .right-box {
        width: 100%;
        max-width: 320px;
        height: 260px;
        margin-top: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-header h2 {
        font-size: 20px;
    }

    .about-header p {
        font-size: 11px;
    }

    .left-content h3 {
        font-size: 15px;
    }
}

/* our stroy */

.store-section {
    background: #fffde7;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.store-section h2 {
    margin-bottom: 5px;
}

.store-section p {
    color: #666;
    font-size: 14px;
}

/* yellow shadow background */
.video-wrapper {
    width: 70%;
    margin: 40px auto 0;
    background: #f3efb3;
    border-radius: 30px;
    padding: 15px;
}

/* gray video box */
.video-wrapper video {
    width: 100%;
    background: #c37837 !important;
    object-fit: cover;
    height: 370px;
    border-radius: 20px;
}
/*  */

.stitched {
    color: #fff;
    font-weight: bold;
    border: 4px dashed #5b250d;
    border-left: 0px;
    border-right: 0px;
    font-weight: normal;
}
.chamoise {
    background: #b97036;
    box-shadow:
        0 0 0 4px #b97036,
        2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    text-shadow: -1px -1px #b97036;
}
.navbar h2 {
    font-weight: bold;
    font-size: 20px;
}
.navbar a {
    color: #5b250d !important;
    font-weight: bold !important ;
}

.navbar a:hover {
    color: #fff !important;
}

.bg-light-bg {
    --bs-bg-opacity: 1;
    background-color: #5b250d !important;
    color: #ffff;
    font-weight: bold;
}

.navbar-nav .dropdown-menu {
    position: static;
    background: #b97036;
    border-radius: 0px 0px 10px 10px;
}

.navbar-nav .dropdown-menu a:hover {
    background-color: #5b250d !important;
    color: #c37837 !important;
}

.stitched-1 {
    border: 4px dashed #b97036;
}

.chamoise-1 {
    background: #5b250d;
    box-shadow:
        0 0 0 4px #5b250d,
        2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    text-shadow: -1px -1px #5b250d;
    border-radius: 4px;
}

.stittchedgreen {
    border-color: #0b8f55 !important ;
}

.generalgreenBtn {
    background: #b5ffde;
    color: #0b8f55;
    box-shadow:
        0 0 0 4px #b5ffde,
        2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    text-shadow: -1px -1px #b5ffde;
    border-radius: 4px;
}

/* photo gallar */

.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 8px;
    align-items: start;

    @media (max-width: 580px) {
        grid-template-columns: 1fr;
    }

    .img-box {
        border: 1px solid #ffffff;
        border-radius: 12px;
        position: relative;
    }

    .img-box:hover .transparent-box {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .img-box:hover .caption {
        transform: translateY(-5px);
    }

    img {
        max-width: 100%;
        border-radius: 12px;
        display: block;
        height: auto;
    }

    .caption {
        color: white;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
        font-size: 1.5rem;
    }

    .transparent-box {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        transition: background-color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-photo {
        grid-row: 1;
        grid-column: 1;
    }

    .sub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-gap: 8px;

        &:nth-child(0) {
            grid-column: 1;
            grid-row: 1;
        }

        &:nth-child(1) {
            grid-column: 2;
            grid-row: 1;
        }

        &:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }

        &:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }
    }
}

.hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

@media screen and (min-width: 1280px) {
    .container {
        margin: 0 auto;
        width: 1250px;
    }
}

/*  */

ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
    background: #5b250d;
    position: relative;
}
.footer-cta {
    border-bottom: 1px solid #b97036;
}
.single-cta i {
    color: #b97036;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}
.cta-text {
    padding-left: 15px;
    display: inline-block;
}
.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}
.cta-text span {
    color: #b97036;
    font-size: 15px;
}
.footer-content {
    position: relative;
    z-index: 2;
}
.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #b97036;
    line-height: 16px;
}
.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}
.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}
.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}
.facebook-bg {
    background: #3b5998;
}
.twitter-bg {
    background: #55acee;
}
.google-bg {
    background: #dd4b39;
}
.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}
.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #b97036;
}
.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}
.footer-widget ul li a:hover {
    color: #b97036;
}
.footer-widget ul li a {
    color: #b97036;
    text-transform: capitalize;
}
.subscribe-form {
    position: relative;
    overflow: hidden;
}
.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2e2e2e;
    border: 1px solid #2e2e2e;
    color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #b97036;
    padding: 13px 20px;
    border: 1px solid #b97036;
    top: 0;
}
.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}
.copyright-area {
    background: #b97036;
    padding: 25px 0;
}
.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #b97036;
}
.copyright-text p a {
    color: #b97036;
}
.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}
.footer-menu li:hover a {
    color: #b97036;
}
.footer-menu li a {
    font-size: 14px;
    color: #b97036;
}

.innerbanner{
    background: url(../images/leather-tuxture-1.jpg);
    height: 150px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.title{
    font-size: 30px;
    font-weight: bold;
    
}


/* About */


.section_all {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
}
.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}
.text_custom {
    color: #5b250d ;
}

.about_icon i {
    font-size: 22px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #5b250d ;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
    max-width: 450px;
    font-size: 24px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 28px;
}
/* About - History */

.timeline-carousel {
  padding: 86px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}

.timeline-carousel:after {
  left: 0;
}
.timeline-carousel:before {
  right: 0;
  opacity: 0;
}
.timeline-carousel .slick-list {
  overflow: visible;
}
.timeline-carousel .slick-dots {
  bottom: -73px;
}
.timeline-carousel h1 {
  color: #5b250d;
  font-size: 46px;
  line-height: 50pd;
  margin-bottom: 40px;
  font-weight: 900;
}
.timeline-carousel__image {
    padding-right: 0px;
    background: #f2f2;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    height: 210px;
}
.slick-slide img {
    /* display: block; */
    width: 120px;
    margin: 0px auto;
}

.timeline-carousel__item {
    padding-right: 20px;
}
.timeline-carousel__item {
  cursor: pointer;
}
.timeline-carousel__item .media-wrapper {
  opacity: 0.4;
  padding-bottom: 71.4%;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
  width: calc(100% - 30px);
}
.timeline-carousel__item-inner {
  position: relative;
  padding-top: 45px;
}
.timeline-carousel__item-inner:after {
  position: absolute;
  width: 100%;
  top: 45px;
  left: 0;
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.timeline-carousel__item-inner .year {
  font-size: 26px;
  line-height: 36px;
  color: #b97036;
  display: table;
  letter-spacing: -1px;
  padding-right: 10px;
  z-index: 1;
  position: relative;
  margin: -15px 0 20px;
  font-weight: 900;
}
.timeline-carousel__item-inner .year:after {
    content: "";
    position: absolute;
    display: block;
    left: -10px;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #b97036;
    z-index: 3;
}
.timeline-carousel__item-inner .month {
  font-size: 12px;
  text-transform: uppercase;
  color: #b38c52;
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}
.timeline-carousel__item-inner p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
    width: 92%;
    font-weight: 400;
    margin-bottom: 15px;
    background: #d3ab8c;
    height: 100%;
    display: table;
    padding: 10px;
    border-radius: 10px;
}
.timeline-carousel__item-inner .read-more {
  font-size: 12px;
  color: #b38c52;
  display: table;
  margin-bottom: 10px;
  font-weight: 900;
  text-decoration: none;
  position: relative;
}
.timeline-carousel__item-inner .read-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  border-bottom: 2px solid #b38c52;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.timeline-carousel__item-inner .read-more:hover:after {
  width: 100%;
}
.timeline-carousel__item-inner .pointer {
  height: 29px;
  position: relative;
  z-index: 1;
  margin: -4px 0 16px;
}
.timeline-carousel__item-inner .pointer:after, .timeline-carousel__item-inner .pointer:before {
  position: absolute;
  content: "";
}
.timeline-carousel__item-inner .pointer:after {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  top: 0;
  left: 0;
  background-color: #b38c52;
}
.timeline-carousel__item-inner .pointer:before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 4px;
  background-color: #b38c52;
}
.timeline-carousel .slick-active .media-wrapper {
  opacity: 1 !important;
}

.slick-dots {
  bottom: 60px;
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 2;
}
.slick-dots li {
  cursor: pointer;
  display: inline-block;
  margin: 0 6px;
  position: relative;
  width: 10px;
  height: 10px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li.slick-active button {
  background: #b38c52;
  border-color: #b38c52;
}
.slick-dots li button {
  display: block;
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.slick-dots li button:hover {
  background: #b38c52;
  border-color: #b38c52;
}

.link {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 9999;
}
.link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.link .fa {
  font-size: 28px;
  margin-right: 8px;
  color: #fff;
}

.img_about img{
        height: 390px;
    border-radius: 10px;
}

/* Contact */

.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
      margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
    padding: 30px 0px;
    height: 233px;
    border-radius: 30px;
}
.contact-page-sec .contact-page-form h2 {
  color: #5b250d ;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #5b250d ;
  width: 150px;
  border-color: #5b250d ;
}
.contact-info-icon i {
  font-size: 48px;
  color: #d78b47 ;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #d78b47 ;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #d78b47;
  font-size: 16px;
  font-weight: ;
  display: inline-block;
  width: 100%;
}

.single-input-field input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}


.single-input-fieldsbtn .chamoiseeBtn {
    margin: 20px auto;
    display: table;
}


@media screen and (max-width:799px) {
        .order-sm-1 {
        order: 2 !important;
    }
.banner .col-sm-6 {
        width: 100%;
    }  

    .bannertext {
    color: #5b250d;
    height: auto;
    }

    .my-container .image-container {
    top: 20%;
    }

    .prev-btn, .next-btn {
    top: 10%;
    }
    .prev-btn{    left: 0px;}
    .next-btn{    right: -80px;}
    .d-s-mb {
    margin-bottom: 0px;
}
.stat-card {
    padding: 15px;
}


.hero, .curve-bg {
    border-radius: 6% 5% 0 0;
}
.brand-box {
    width: 80%;
}

}

.fn-lg{
    font-size: 16px;
}

.boxdgn {
    gap: 20px;
}
.cardimg{
    width: 48%;
}

.cardimg-dgn {
    height: 296px;
}

.cardimg-dgn img{
    width: 100%;
}

.cardimg-dgn img {
    width: 100%;
    height: 100%;
}   

.title-h3{
    font-size: 26px;
    color: #b97036;
    z-index: 1;
    position: relative;
    font-weight: 900;
}

.cardimg-content{
    padding: 10px 0px;
}
.p-box{
    font-size: 12px;
    line-height: 18px;
    color: #000;
    width: 100%;
    font-weight: 400;
    margin-bottom: 15px;
    background: #d3ab8c;
    height: 100%;
    display: table;
    padding: 10px;
    border-radius: 10px;
}

.contactbgn{
    background: url(../images/contact-us-banner.jpg);
    height: 450px;
    padding: 80px 20px;
    border-radius: 40px;
}

.white-clr{
    color: #fff;
}

.contexttext{
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.contactbgn .contact-info-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contactbgn .contact-info-text h2 {
    color: #ffffff;
    font-size: 16px;
}

.contactbgn  .contact-info-text span {
    color: #ffffff;
    font-size: 13px;
    font-weight: ;
    display: inline-block;
    width: 100%;
    line-height: 7px;
}

.imgfullpg{
    width: 100%;
}