@font-face {
    font-family: 'yekan-bakh';
    src: url('../fonts/YekanBakhFaNum-Light.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'yekan-bakh';
    src: url('../fonts/YekanBakhFaNum-Regular.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'yekan-bakh';
    src: url('../fonts/YekanBakhFaNum-Bold.woff2') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'yekan-bakh', sans-serif;
    margin: auto;
}

:root {
    --primary-color: #2D2D34;
    --secondary-color: #B97375;
    --primary-hover: #CEB1BE;
    --primary-hover-60: rgba(206, 177, 190, 0.6);
    --secondary-hover: rgb(226, 220, 222);
    --secondary-hover-50: rgba(226, 220, 222, 0.5);
    --primary-bg: #F1E4E8;

    --gold-050: #fdf8ee;
    --gold-100: #f8f1df;
    --gold-200: #f1e3bf;
    --gold-300: #e6cf8c;
    --gold-400: #d9b45e;
    --gold-500: #c79b3c;
    --gold-600: #a47c2f;
    --gold-700: #7d5d24;
    --ink-900: #0f0f0f;
    --ink-700: #262626;
    --ink-500: #4a4a4a;
    --ink-300: #8c8c8c;
    --ink-100: #dcdcdc;
    --cream: #faf7f1;
    --white: #ffffff;
    --danger: #c7563c;
    --success: #2f855a;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --container-width: min(1180px, calc(100% - 3rem));

    --card-first-shape: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    --card-first-shape-btn: polygon(0 0, 100% 0, 100% 44%, 100% 0, 88% 100%, 12% 100%, 0 0, 0% 20%);
    --card-first-shape-no-left: polygon(0 0, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 100%, 0% 20%);
    --card-first-shape-no-right: polygon(20% 0%, 100% 0, 100% 20%, 100% 80%, 100% 100%, 20% 100%, 0% 80%, 0% 20%);
    --card-second-shape: polygon(0 0, 80% 0%, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5 !important;
    border-radius: 10px !important;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(0, 31, 51) !important;
    border: 2px solid rgb(0, 31, 51) !important;
    border-radius: 500px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0, 31, 51) !important;
}

a {
    text-decoration: none;
}

.page-container {
    max-width: 1450px;
}

 .breadcrumb {
    margin-bottom: 0;
    justify-content: center;
}

 .breadcrumb-wrapper li {
    padding: 0 !important;
    font-size: 13px;
    color: rgb(58, 56, 69);
}

 .breadcrumb-wrapper a {
    text-decoration: none;
    color: #3A3845;
    font-weight: 500;
}

 .breadcrumb-wrapper li.active {
    font-size: 12px;
    color: #3A3845;
}

.breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
    font-weight: 500;
}

/*hero start*/

.hero-section {
    width: 100%;
    height: 360px;
    position: relative;
    background-color: #58595B;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-hover-60);
}

.hero-section img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.hero-section .text-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.hero-section .text-content h1 {
    font-size: 45px;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-section .text-content h1 {
        font-size: 30px;
    }
}

.hero-section .breadcrumb {
    margin-bottom: 0;
}

.hero-section .breadcrumb-wrapper li {
    font-size: 13px;
    color: var(--secondary-hover);
}

.hero-section .breadcrumb-wrapper a {
    text-decoration: none;
    color: #F5F5F5;
}

.hero-section .breadcrumb-wrapper li.active {
    color: var(--primary-color);
}

.hero-section .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
    font-weight: 500;
    color: #F5F5F5 !important;
}


/*hero end*/


.primary-btn a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

.primary-btn a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: var(--primary-bg);
    transition: 0.3s ease-in-out;
    transform: scaleY(1);
}

.primary-btn a:hover::before {
    transform: scaleY(0);
}

.primary-btn a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: var(--primary-bg);
    transition: 0.3s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.5s;
}

.primary-btn a:hover::after {
    transform: scaleX(0);
}

.primary-btn a span {
    position: relative;
    z-index: 3;
    font-size: 16px;
}

.primary-btn {
    background-color: none;
    text-decoration: none;
    background-color: var(--primary-bg);
    border: none;
    padding: 0;
}

.profile-panel-main-content .profile-tabs .btn.active {
    background-color: var(--secondary-hover);
    color: var(--primary-color);
    /*border-color: #588E80;*/
}

.profile-panel-main-content .profile-tabs a:last-child .btn.active {
    border: 1px solid  #ff2929;
    background-color:  #ff2929;
    color: #fff;
}

.profile-panel-main-content .profile-tabs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-panel-main-content .profile-tabs button {
    padding: 12px 20px;
    color: #616161;
    border: 1px solid #0201012B;
    border-right: none;
    border-left: none;
    font-size: 15px;
    border-radius: 0;
}

.profile-panel-main-content .profile-tabs a:last-child button {
    color: #ff2929;
    border-color: #ff2929;
}

.profile-panel-main-content .profile-tabs button:hover {
    background-color: var(--primary-hover);
    color: var(--primary-color);
}

.profile-panel-main-content .profile-tabs a::last-child button:hover {
    border: 1px solid  #ff2929;
    background-color:  #ff2929;
    color: #fff;
}