@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --manrope-font: "Manrope", sans-serif;
    /* Fonts */
    --font-90: 90px;
    --font-80: 80px;
    --font-60: 60px;
    --font-55: 55px;
    --font-40: 40px;
    --font-36: 36px;
    --font-32: 32px;
    --font-30: 30px;
    --font-28: 28px;
    --font-25: 25px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-large: 18px;
    --font-regular: 16px;
    --font-small: 14px;
    --font-xs: 12px;

    /*  Colors */
    --text-color: #564B43;
    --typo-primary: #0E9493;
    --typo-secondary: #0A2540;
    --color-primary: #EF7310;
    --light-gray: #F1F5F9;
    --border-color: #E6E6E6;
    --border-plight: #FCE3CF;
    --border-clight: #CBD5E1;
    --light-orange: #FDF8F7;
    --h-color: #2F2B27;
    --card-bg: #F5F5F5;

    --color-strock: #D4DEEB;
    --color-white: #ffffff;
    --color-black: #0A0C00;
    --mid-orange: #FFEFEC;
    --light-ornage-border: #fdebde;
    --light-border: #3b3d33;
    --light-gray-border: #E6E6E6;
    --light-green-border: #0E949333;
    --red-color: rgb(241, 9, 9);
    --green-active: #05EF63;
    --shadow-color: #ef73102e;

    --color-pink: #E84989;
    --color-lightblue: #54B7EC;
    --color-red-600: #F24747;

    --bg-light: #F5F6F9;
    --bg-hover: #ebeff4;
    --bg-alice: #F4F5F8;
    --bg-primary-dark: #152740;
    --bg-light-blue: #EDF4FD;
    --arrow-bg: #E1E9F4;
    --bg-light-opacity: rgb(245 246 249 / 60%);

    --dim-shade-background: rgba(18, 19, 57, 0.65);
    --shadow: 8px 6px 15px rgba(0, 97, 222, 0.25);
}

.slider-pro-block::selection {
    color: var(--typo-primary);
    background: var(--color-white);
}

body {
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text-color);
    overflow-x: hidden;
    font-family: var(--manrope-font);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
*::first-letter {
  text-transform: uppercase;
}
.container-fluid {
    max-width: 1844px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

p:last-child {
    margin-bottom: 0;
}

p {
    font-family: var(--manrope-font);
    font-size: var(--font-regular);
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
    color: var(--text-color);
}

a {
    text-decoration: none !important;
    transition: all 0.4s ease-in-out;
    color: var(--color-primary);
}

a:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
    font-family: var(--manrope-font);
    font-weight: 700;
    line-height: normal;
    color: var(--h-color);
}

h1 {
    font-size: var(--font-80);
    line-height: 90px;
    font-weight: 600;
}

h2 {
    font-size: var(--font-40);
    line-height: 55px;
    font-weight: 700;
}

h3 {
    font-size: var(--font-32);
    line-height: 40px;
    font-weight: 600;
}

h4 {
    font-size: var(--font-25);
    line-height: 35px;
    font-weight: 600;
}

h5 {
    font-size: var(--font-20);
    line-height: 30px;
}

input {
    outline: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

select {
    /* background-image: url(../images/arrow-down.png); */
    background-repeat: no-repeat;
    background-position: 94% center;
}

.py-100 {
    padding: 100px 0;
}

.py-50 {
    padding: 50px 0;
}

.pt-80 {
    padding-top: 80px;
}

.py-60 {
    padding: 60px 0;
}

.pb-50 {
    padding-bottom: 80px;
}

.py-40 {
    padding: 40px 0;
}

.py-120 {
    padding: 120px 0;
}

.pt-120 {
    padding-top: 120px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid;
    padding: 7px 16px;
    transition: all .4s ease-in-out;
    cursor: pointer;
    font-size: var(--font-regular);
    line-height: 24px;
    border-radius: 4px;
    text-transform: capitalize;
    width: auto !important;
}

.primary-outline,
.primary-fill:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.primary-outline:hover,
.primary-fill {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
}

.primary-outline:hover img,
.secondary-outline:hover img{
    filter: brightness(0) invert(1);
}

.secondary-btn,
.secondary-outline:hover {
    background-color: var(--typo-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--typo-primary) !important;
}

.secondary-btn:hover,
.secondary-outline {
    background-color: var(--color-white) !important;
    color: var(--typo-primary) !important;
    border-color: var(--typo-primary) !important;
}

.custom-btn svg {
    transition: all .4s ease-in-out;
}

.custom-btn:hover svg {
    filter: brightness(0) invert(1);
}

.secondary-btn:hover svg {
    filter: none !important
}

.white-btn {
    background-color: var(--color-white);
    color: var(--h-color);
    border-color: var(--color-white);
}

.white-btn:hover {
    background-color: var(--h-color);
    color: var(--color-white);
    border-color: var(--h-color);
}

.custom-btn.btn-lg {
    font-size: var(--font-large);
    padding: 14px 40px;
    font-weight: 700;
}

.red-outline {
    border: solid 1px #F24747;
    color: #F24747;
}

.red-outline:hover {
    background-color: #F24747;
    color: var(--color-white);
}

.secondary-light {
    background: #e6f4f4;
    color: var(--typo-primary);
    border-color: #e6f4f4;
    font-weight: 500;
}

.secondary-light:hover {
    background: var(--typo-primary);
    color: var(--color-white);
    border-color: var(--typo-primary);
}



.primary-color {
    color: var(--color-primary);
}

.secondary-color {
    color: var(--typo-primary);
}

.primary-text {
    color: var(--color-primary);
    font-weight: 600;
}


.error-text {
    color: var(--red-color);
}

.button-gropup {
    gap: 30px;
}

/* header css */
header nav {
    padding: 20px 0 !important;
    border-bottom: 1px solid var(--border-color);
}

header nav .nav-item a {
    font-size: var(--font-large);
    font-weight: 400;
    color: var(--color-black);
}

header nav .nav-item a.active {
    font-weight: 600;
    color: var(--typo-primary) !important;
}

header nav .nav-item a:hover {
    color: var(--typo-primary) !important;
}

.language-selector .dropdown ul {
    display: block;
    position: absolute;
    right: -20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 10px;
    min-width: 230px;
}

.language-selector .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.language-selector .dropdown ul::before {
    content: "";
    position: absolute;
    top: -6px;
    left: auto;
    right: 18px;
    margin-left: 0;
    content: "";
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: all 0.5s ease-in-out;
    transform: translateY(10px);
    border-bottom: 6px solid #fff;
    opacity: 0;
    z-index: 9999;
    visibility: hidden;
}

.language-selector .dropdown:hover>ul::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.language-selector .dropdown ul li a,
.language-selector .dropdown ul li button {
    font-size: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 15px;
    margin-bottom: 5px;
}

.language-selector .dropdown ul li a.active,
.language-selector .dropdown ul li a:hover,
.language-selector .dropdown ul li button.active,
.language-selector .dropdown ul li button:hover {
    background-color: var(--light-gray);
    color: var(--typo-primary);
}

.language-selector {
    display: flex;
    align-items: center;
}

.select-lang {
    display: flex;
    align-items: center;
    padding-right: 15px;
    font-size: 12px !important;
    font-weight: 500 !important;
    position: relative;
}

.select-lang::after {
    content: '';
    width: 11px;
    height: 11px;
    position: absolute;
    right: 0;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.86988 4.10208L4.85822 7.09041C5.21113 7.44333 5.78863 7.44333 6.14155 7.09041L9.12988 4.10208' stroke='%23ffffff' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center right;
    transition: all .5s ease-in-out;
}

.language-selector:hover .select-lang::after {
    transform: rotate(180deg);
}

.select-lang img {
    max-width: 20px;
}

header ul.navbar-nav {
    margin-left: 20px;
}

.post-project-link {
    display: flex;
    align-items: center;
}

.post-project-link a {
    font-weight: 500;
}

header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    text-transform: uppercase;
}

header .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) .nav-link {
    margin-right: 30px;
}

.button-gropup .nav-btn {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    color: var(--color-black);
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.button-gropup .nav-btn.active {
    color: var(--typo-primary);
}

.button-gropup .nav-btn:hover {
    color: var(--typo-primary);
}

.form-group {
    display: flex;
    width: 100%;
    gap: 25px;
}

.form-group>div {
    width: 100%;
}

input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.notification-wrap .dropdown-menu {
    min-width: 22rem;
}

li.list-group-item .avatar {
    width: 40px;
    height: 40px;
}

li.list-group-item .avatar img {
    max-width: 100%;
}

.flex-grow-1 .text-body {
    font-size: 12px;
    line-height: 20px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: .8;
}

.flex-grow-1 h6 {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.flex-grow-1 .text-muted {
    font-size: 12px;
    line-height: 20px;
    color: var(--light-gray);
    opacity: .6;
}

li.list-group-item {
    cursor: pointer;
    padding: 10px 15px;
}

li.list-group-item:hover {
    background-color: var(--light-gray);
}

ul.dropdown-menu {
    border-color: var(--light-gray);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.dropdown-notifications-actions .badge-dot {
    width: 10px;
    height: 10px;
    display: block;
    background-color: var(--color-primary);
    border-radius: 10px;
}

.avatar-initial {
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: block;
    background-color: var(--light-ornage-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-notifications-list {
    max-height: 24.08rem;
    overflow-y: auto;
}

.dropdown-notifications-list::-webkit-scrollbar {
    width: 8px;
    background: var(--light-gray-border);
    border-radius: 50px;
}

.dropdown-notifications-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}

span.bg-label-primary {
    background-color: var(--light-ornage-border);
    color: var(--color-primary);
}

.dropdown .button-primary {
    padding: 8px 30px;
}

.dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: auto;
    right: 18px;
    margin-left: 0;
    content: "";
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: all 0.5s ease-in-out;
    transform: translateY(10px);
    border-bottom: 6px solid #fff;
    opacity: 0;
    z-index: 9999;
    visibility: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.dropdown-menu.show::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.notification-panel{
    position: relative;
    margin-top: 5px;
    border-color: var(--light-gray) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.notification-panel::before {
    content: "";
    position: absolute;
    top: -6px;
    left: auto;
    right: 18px;
    margin-left: 0;
    content: "";
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: all 0.5s ease-in-out;
    transform: translateY(10px);
    border-bottom: 6px solid #fff;
    z-index: 9999;
    visibility: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


.notification-wrap .dropdown-toggle::after {
    display: none;
}

.notification-wrap .dropdown-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: var(--border-plight);
    border: none;
}

.notification-wrap .dropdown-toggle:hover {
    background-color: #fce9b6;
}

.notification-wrap .dropdown-toggle .count-no {
    width: 15px;
    height: 15px;
    background-color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 10px;
    position: absolute;
    right: -6px;
    top: -6px;
}

.loginuser-nav {
    gap: 20px;
}

.userlogin-dropdown .select-lang div {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    flex-direction: column;
    color: var(--color-black) !important;
}

.userlogin-dropdown .select-lang img {
    max-width: 34px !important;
    height: 34px !important;
}

.userlogin-dropdown .select-lang::after {
    top: 11px;
    background-image: url("data:image/svg+xml, %3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.86988 4.10208L4.85822 7.09041C5.21113 7.44333 5.78863 7.44333 6.14155 7.09041L9.12988 4.10208' stroke='%23000000' stroke-width='1.2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/* notification end  */

/* footer  */
.footer-wrapper {
    padding-top: 65px;
    background-color: var(--color-black);
    background-image: url("data:image/svg+xml,%3Csvg width='91' height='167' viewBox='0 0 91 167' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.35' d='M70.7649 0V56.3216L32.4064 15.7176L14.5498 34.7098L56.2151 70.7294H0V94.9608H56.2151L14.5498 134.91L32.4064 151.937L70.7649 112.643L68.7809 167H94.5737V112.643L134.255 151.937L151.45 134.91L111.108 94.9608H166V70.7294H113.753L151.45 34.7098L134.255 15.7176L94.5737 56.3216V0H70.7649Z' fill='%23404A62'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right;
}

.footer-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 38px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--light-border);
}

.footer-land {
    align-items: center;
}

.footer-land .language-selector {
    font-weight: 500;
    color: var(--color-white);
    margin-right: 25px;
    margin-top: 5px;
}

.footer-land .language-selector ul li a {
    color: var(--text-color);
}

.footer-head .footer-socail ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-head .footer-socail ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 40px;
}

.footer-head .footer-socail ul li a:hover {
    background-color: var(--typo-primary);
    border-color: var(--typo-primary);
}

.footer-head .footer-socail ul li a:hover img {
    filter: brightness(0) invert(1);
}

.footer-content p {
    font-size: 14px;
    line-height: 24px;
    color: var(--color-white);
}

.footer-linking .footer-title h5 {
    color: var(--color-white);
    margin: 0;
}

.footer-link ul li a {
    display: block;
    color: var(--color-white);
    margin-top: 30px;
    transition: all .4s ease-in-out;
}

.footer-link ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-copy-right {
    margin-top: 80px;
    padding: 15px 0;
    border-top: 1px solid var(--light-border);
}

.footer-copy-right p {
    color: var(--color-white);
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

/* post-proect  */
.post-project-wrapper {
    background-color: var(--color-primary);
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='312' height='358' viewBox='0 0 312 358' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_62_31' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='312' height='358'%3E%3Crect width='312' height='358' fill='%23D4FE00'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_62_31)'%3E%3Cg opacity='0.05'%3E%3Crect x='78.7773' y='106.929' width='533' height='69' rx='34.5' transform='rotate(-35.1593 78.7773 106.929)' fill='white'/%3E%3Crect x='46' y='227.957' width='533' height='69' rx='34.5' transform='rotate(-35.1593 46 227.957)' fill='white'/%3E%3Crect x='120' y='273.929' width='533' height='69' rx='34.5' transform='rotate(-35.1593 120 273.929)' fill='white'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: top right;
    margin-top: 100px;
}

.post-project-wrapper .title h2 {
    color: var(--color-white);
}

.post-project-wrapper p {
    color: var(--color-white);
}

.post-content {
    position: relative;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.post-content .post-project {
    display: block;
    width: fit-content;
    margin-top: 30px;
    padding: 13px 40px;
    border-radius: 5px;
    background-color: var(--color-white);
    color: var(--typo-color-secondary);
    border: 1px solid var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
}

.post-content .post-project:hover {
    border-color: var(--color-white);
    background-color: transparent;
    color: var(--color-white);
}

.post-project-wrapper .img-wrap {
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.post-content .arror-img {
    position: absolute;
    right: 40px;
}

/* sub-hero  */

.inner-hero-wrapper {
    background-color: #FDF8F7;
    background-image: url("/assets/image/inner-hero-shpa-1.svg"), url("/assets/image/circle-half.svg");
    background-position: bottom left, bottom right 4%;
    background-repeat: no-repeat;
}

.inner-hero-wrapper .hero-content h1 {
    font-size: var(--font-40);
    line-height: 55px;
    font-weight: 700;
    margin-bottom: 2px;
}

.inner-hero-wrapper .hero-content p {
    color: var(--text-color);
}

.inner-hero-img {
    background-image: url(/assets/image/star-2.svg);
    background-position: top 20px right;
    background-repeat: no-repeat;
}

.inner-hero-wrapper .hero-content .breadcrumb {
    justify-content: flex-start;
    margin: 0;
    margin-top: 30px;
}

.inner-hero-wrapper .hero-content .breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    position: relative;
}

.inner-hero-wrapper .hero-content .breadcrumb .breadcrumb-item a {
    color: var(--color-black);
}

.inner-hero-wrapper .hero-content .breadcrumb .breadcrumb-item a:hover {
    color: var(--color-primary);
}

.inner-hero-wrapper .hero-content .breadcrumb .breadcrumb-item.active {
    color: var(--color-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    width: 5px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 9L4.5 5L0.5 1' stroke='%23EF7310' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    border: none;
    margin-top: 8px;
    position: absolute;
    left: 4px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 16px;
    margin-left: 6px;
}

.userlogin-dropdown .dropdown ul {
    right: 0;
}

.userlogin-dropdown .dropdown ul li img {
    width: 24px !important;
    height: 24px !important;
}

.userlogin-dropdown .nav-link::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--green-active);
    border-radius: 50%;
    position: absolute;
    left: 25px;
    bottom: 4px;
}

.privacy-content h2 {
    font-size: var(--font-regular);
    line-height: 24px;
    font-weight: 700;
    margin: 0;
}

.privacy-content ul {
    margin-bottom: 10px;
}

.privacy-content ul li {
    color: var(--text-color);
    position: relative;
    padding-left: 13px;
    line-height: 20px;
    font-size: var(--font-small);
}

.privacy-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: #404A62;
    font-size: 16px;
}

.privacy-content a {
    font-weight: 600;
}

/*  */

.input-icon select {
    width: 100%;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--color-white);
    border-radius: 8px;
    height: 40px;
    background-color: var(--color-white);
    font-size: var(--font-small);
    padding: 5px 5px;
}

.select2-selection__rendered {

    line-height: 28px;
}

.select2-selection__arrow {
    height: 100%;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--color-primary);
    box-shadow: none;
}

.select2-results__option--selectable {
    cursor: pointer;
    line-height: normal;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--typo-primary);
    color: white;
}

.no-projects .custom-btn {
    width: fit-content !important;
    margin: 0 auto;
}

.project-filter .custom-btn{
    padding: 7px 10px;
}

.project-filter .custom-select select {
    padding-top: 7px;
    padding-bottom: 7px;
}

.project-filter .custom-btn:hover img{
    filter: brightness(0) invert(1);
}

input#dateOfBirth {
    padding-right: 12px;
}

.custom-sub-select{
    position: relative;
}

.custom-sub-select select {
    font-size: var(--font-small);
    min-height: 40px;
    padding-right: 30px;
    background-color: var(--color-white);
    border-color: var(--color-white);
    border-radius: 8px;
    background-image: none;
}

.custom-sub-select select:focus,
.custom-select select:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--color-primary);
}

.custom-sub-select::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 13px;
    height: 9px;
    pointer-events: none;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.998047L7 6.99805L13 0.998047' stroke='%232F2B27' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.customer-menu ul li .submenus li > a .icon svg,
.customer-menu> ul> li>a svg {
    width: 24px;
    height: 24px;
}

.customer-menu ul li .submenus li > a .arrow svg,
.customer-menu> ul> li>a .arrow svg {
    width: 16px;
    height: 16px;
}

.search-wrapper{
    gap: 5px;
}


.mobile-only{
    display: none;
}

.bg-shap img{
    width: 100%;
    height: auto;
}

.scroll-to-top {
    padding: 0;
    border: none;
    background: var(--color-primary);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scroll-to-top:hover {
    box-shadow: var(--shadow-color);
}

.project-user .pu-share .view-bid{
    white-space: nowrap;
}

.project-card-outer.no-project {
    grid-template-columns: 1fr;
}

.pu-profile .pu-content h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 150px;
    margin-bottom: 0 !important;
}

.pu-profile .pu-content .no-freelancer{
    max-width: fit-content;
}

div#previewBox span.text-danger {
    line-height: 0;
}

.chat-frame-wrap .content .messages ul li.replies .message-meta-info {
    display: contents;
}

.chat-frame-wrap .content .messages ul li.sent .message-meta-info{
    display: contents;
}

.chat-frame-wrap .content .messages ul li.replies .message-meta-info .message-time {
    right: 24px;
    white-space: nowrap;
}

button.dropdown-notifications-read {
    outline: none;
    border: none
}

.footer-land .language-selector a.nav-link.select-lang {
    padding-right: 15px !important;
}

.read-receipt.read {
    color: #10b981 !important;
}

.project-user .pu-share .share-profile{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
}

.search-wrapper input{
    width: 100%;
    color: #2f2b51;
}

.project-card .project-info .project-dis{
    min-height: 38px;
}

.project-filter .custom-btn{
    min-width: 43px;
}

.doc-left{
    align-items: start;
}

.doc-text .filename {
    word-break: break-all;
    line-height: normal;
}

.doc-left .doc-text {
    width: calc(100% - 40px);
}

.loading-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  text-align: center;
  height: calc(100vh - 100px);
}

.toast-message{
    max-width: 300px !important;
}

.project-detail-freelancer .pu-content h5{
    max-width: 100%;
}

.project-detail-freelancer {
    justify-content: center;
}

.notification-badge{
    top: 4px !important;
}

.custom-btn.red-outline{
    font-size: 16px !important;
}

.deal-price span{
    margin-top: 3px;
}

.cancel-modal{
    padding: 20px;
    border: none;
    box-shadow: none;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.cancel-modal .form-group {
    flex-direction: column;
    gap: 0;
    margin: 10px 0 20px;
}

.cancel-modal .success-message{
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #0e949308;
    border: 1px solid #0e949396;
    border-radius: 10px;
}

.cancel-modal .success-message p{
    width: calc(100% - 30px);
}

.cancel-modal .success-message svg path{
    fill: var(--typo-primary);
}

.cancel-modal .success-message p {
    text-align: left;
    font-size: 14px;
    color: #097474;
}

.cancel-modal .custom-btn.red-fill{
    font-size: 16px;
    font-weight: 500;
    padding: 7px 16px !important;
}

.cancel-modal .modal-header{
    margin-bottom: 25px;
    justify-content: space-between;
}

.cancel-modal .modal-header h3{
    font-size: var(--font-20);
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--manrope-font);
    font-weight: 700;
    line-height: normal;
    color: var(--h-color);
    position: relative;
    padding-bottom: 10px;
}

.cancel-modal .modal-header h3::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 40px;
}

.cancel-modal .modal-footer{
    gap: 10px;
    margin-top: 25px;
}

button.btn-close {
    border: solid 2px #564B43;
    border-radius: 50%;
    background-size: 10px !important;
    background-position: center;
    font-size: 0;
    height: 22px;
    width: 22px;
}

.cancel-modal .warning-message{
    margin-bottom: 20px;
}

.profile-wrapper.client-wrapper .category-listing{
    padding-top: 0 !important;
}

.scroll-to-top{
    padding: 0;
    border: none;
    background: var(--typo-primary);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 991;
    right: 30px;
    bottom: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .24);
}

.category-warning{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 10px;
}

.category-warning p {
    margin: 0;
    color: #9b2c2c;
    font-size: var(--font-small);
    line-height: 1.5;
    width: calc(100% - 30px);
}

.cancel-modal-btn{
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
} 

.pd-bid .share-profile:hover svg path{
    fill: var(--color-white);
}

.freelancer-profile-edit{
    text-align: center;
    position: relative;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding-top: 71px;
    padding-bottom: 12px;
}

.freelancer-profile-img{
    margin: 0 auto;
    width: 122px;
    height: 122px;
    background-color: var(--color-white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translate(-50%, 0);
}

.freelancer-profile-update-img{
    border-radius: 50%;
    max-width: 100px;
    height: 100px;
}

.freelancer-profile-edit .edit-btn {
    position: absolute;
    bottom: -6px;
}

.freelancer-profile-edit .edit-btn .edit-btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background-color: var(--color-primary);
    border-radius: 40px;
    border: 1px solid var(--color-primary);
}

.freelancer-profile-edit .edit-btn .edit-btn-link img {
    filter: brightness(0) invert(1);
}

.freelancer-profile-edit h5 {
    margin-bottom: 2px;
}

.cl-review-sidebar{
    text-align: center;
    position: relative;
    background-color: var(--color-white);
    border: solid 1px var(--border-plight);
    border-radius: 15px;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
}

.cl-review-sidebar-top {
    padding: 30px 20px 20px;
}

.cl-review-sidebar-img{
    margin: 0 auto;
    width: 90px;
    height: 90px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-plight);
    padding: 8px;
    margin-bottom: 15px;
}

.cl-review-sidebar h5{
    padding-bottom: 0;
    margin-bottom: 2px;
}

.cl-review-update-img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-my-profile-block{
    text-align: center;
    position: relative;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding-top: 71px;
    padding-bottom: 12px;
}

.client-my-profile-img{
    margin: 0 auto;
    width: 122px;
    height: 122px;
    background-color: var(--color-white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translate(-50%, 0);
}

.find-project-wrapper .project-card .project-info {
    padding: 10px 0 20px;
}

.client-my-profile-update-img{
    border-radius: 50%;
    max-width: 100px;
    height: 100px;
}

.pd-discription h3:first-child{
    margin-bottom: 2px;
}

.star svg{
    width: 24px !important;
    height: 24px !important;
}

.pd-discription .form-wrap {
    padding: 0;
}

.freelancer-profile-view-edit-block{
    text-align: center;
    position: relative;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 71px 30px 12px;
}

.freelancer-profile-view-img{
    margin: 0 auto;
    width: 122px;
    height: 122px;
    background-color: var(--color-white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translate(-50%, 0);
}

.freelancer-profile-view-update-img{
    border-radius: 50%;
    max-width: 100px;
    height: 100px;
    object-fit: cover;
}

.freelancer-profile-view-edit-block .fc-contact .fc-text{
    text-align: left;
}

.simple-text-display.bio-editor .text-content {
    min-height: auto !important;
}

.navbar-expand-lg .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-expand-lg .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3E%3C/svg%3E");
}

.find-project-detail-siedebar{
    text-align: center;
    position: relative;
    background-color: var(--color-white);
    border: solid 1px var(--border-plight);
    border-radius: 10px;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
}

.find-project-detail-siedebar-top{
    padding: 20px 12px 10px;
}

.find-project-detail-img{
    margin: 0 auto;
    width: 90px;
    height: 90px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-plight);
    padding: 8px;
}

.find-project-detail-update-img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-category{
    background-color: var(--typo-primary);
    color: var(--color-white);
    cursor: pointer;
}

.add-category:hover{
    background-color: var(--typo-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-color);
}

.find-project-wrapper .work-outer{
    align-items: center;
}

.find-project-wrapper .work-outer .work-profile {
    padding: 0;
    align-self: anchor-center;
}