@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

/* matter-fonts */
@font-face {
    font-family: "Matter-Light";
    src: url("../font/matter/Matter-Light.ttf");
}

@font-face {
    font-family: "Matter-Regular";
    src: url("../font/matter/Matter-Regular.ttf");
}

@font-face {
    font-family: "Matter-Medium";
    src: url("../font/matter/Matter-Medium.ttf");
}

@font-face {
    font-family: "Matter-SemiBold";
    src: url("../font/matter/Matter-SemiBold.ttf");
}

@font-face {
    font-family: "Matter-Bold";
    src: url("../font/matter/Matter-Bold.ttf");
}

@font-face {
    font-family: "Matter-Heavy";
    src: url("../font/matter/Matter-Heavy.ttf");
}

/* matter-fonts */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    overflow-x: hidden;
    background-color: #ffffff;
}

main {
    overflow: hidden;
}

a {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

figure {
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h3,
h4,
h6 {
    font-family: 'DM Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p {
    font-family: 'DM Sans', sans-serif;
    color: #2D2D2D;
    font-size: 15px;
    line-height: 25px;
    text-transform: unset;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p::first-letter {
    text-transform: capitalize;
}

/* :root {
    --primary-color: #01BA7C;
    --secondary-color: #eb81531a;
} */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #313747;
    transition: all .2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD765;
}

/**************************** Btn hover Start ***************************/
.btn {
    font-family: 'DM Sans', sans-serif;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 12px;
}

.btn-box .btn-primary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    color: #fff;
    background-color: #01BA7C;
    border-radius: 0px;
    border: 1px double #01BA7C;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-primary:hover {
    background-color: #01BA7C;
}

.btn-box .btn-secondary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    color: #313747;
    background-color: #FFD765;
    border-radius: 0px;
    border: 1px double #FFD765;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background-color: #FFD765;
}

.btn-box .btn-icon {
    color: #232F3F;
}

/* Bounce To Right */
.hvr-bounce-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: #01BA7C !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: #313747 !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */
/**************************** Btn hover Close ***************************/

/********************* loader css start ******************************/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}

.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #01BA7C;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}

.overlay .overlayDoor:before {
    left: 0;
}

.overlay .overlayDoor:after {
    right: 0;
}

.overlay.loaded .overlayDoor:before {
    left: -50%;
}

.overlay.loaded .overlayDoor:after {
    right: -50%;
}

.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}

.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/************************** loader css end ****************************/

/**************************** Form css Start ***************************/
.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #313747;
    font-family: "Matter-Medium";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #313747;
    font-family: "Matter-Medium";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #313747;
    font-family: "Matter-Medium";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #313747;
    font-family: "Matter-Medium";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000 !important;
}

/* upload-image preview start */
.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 0 auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 22px;
    z-index: 1;
    top: 10px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f044";
    font-family: "Font Awesome 6 pro";
    color: #01ba7c;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}


.avatar-upload .avatar-preview {
    display: block;
    min-width: 130px;
    max-width: 130px;
    min-height: 130px;
    max-height: 130px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.avatar-upload .avatar-preview #imagePreview img {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-upload .avatar-preview .imagePreview img {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* upload-image preview end */

.input-main {
    margin: 0 0 18px 0;
    overflow: hidden;
}

.input-main p,
.input-main label {
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0 0 15px 0;
    padding: 0;
    color: #313747;
    line-height: 24px;
    font-family: "Matter-Medium";
}

.input-main p span,
.input-main label span {
    color: #FF6B6B;
}

.input-main .form-group {
    position: relative;
}

.input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 20px;
    color: #74769E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
}

.input-main .form-group .card-imgs li img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    object-fit: contain;
}

.input-main .form-control.img-bx {
    padding: 12px 20px 12px 60px;
}

.input-main .form-select,
.input-main .form-control {
    font-family: 'DM Sans', sans-serif;
    border: none;
    height: auto;
    background-color: #fff;
    border: 1px solid #8F8F8F;
    border-radius: 5px;
    padding: 12px 30px 12px 17px;
    color: #232F3F;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #313747;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye:before,
.input-main .form-group .field-icon1.fa-eye-slash:before {
    font-family: "Font Awesome 6 pro";
}

.input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 10px 0 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}


.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: #01ba7c;
    border-color: #01ba7c;
}

.form-check .form-check-input:focus {
    border-color: #01BA7C;
    box-shadow: none;
}

.form-check .form-check-label {
    font-size: 16px;
    font-weight: 500;
    color: #313747;
    letter-spacing: 1.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    opacity: 0.7;
}

.tox .tox-promotion {
    display: none;
}

.tox:not([dir=rtl]) .tox-statusbar__branding {
    display: none;
}

.toggle-btn {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #D9D9D9;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked+.toggle-switch {
    background: #01ba7c;
}

.toggle-checkbox:checked+.toggle-switch:before {
    left: 30px;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

/* toggle */
/**************************** Form css End ***************************/
/**************************** Modal css Start ***************************/
.modal .modal-content {
    border: 1px solid #01BA7C;
}

.modal .modal-content .modal-header {
    border-bottom: none;
}

.modal .modal-content .modal-body h5 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
}

/**************************** Modal css End ***************************/

/**************************** Header css Start ***************************/

.header {
    padding: 0rem;
    z-index: 99;
    padding-left: 17.5rem;
    transition: all .2s ease;
    background: transparent;
    box-shadow: none;
    /* box-shadow: 0 0 8px 2px rgb(0 0 0 / 5%); */
    position: fixed;
    top: 0;
    width: 100%;
}

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 0 8px 2px rgb(0 0 0 / 5%);
    background: #fff;
}

.header .navbar {
    padding: 0;
    width: 100%;
    background: transparent;
}

.header .navbar .container-fluid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

/* sidemenu start */
.header .navbar button.toggle {
    display: block;
}

.header .navbar button.toggle {
    background: transparent;
    border: none;
    width: 25px;
    height: 30px;
    cursor: pointer;
    outline: 0;
}

.toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    display: block;
    position: relative;
    cursor: pointer;
}

.toggle span:before,
.toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease-out;
}

.toggle span:before {
    top: -10px;
}

.toggle span:after {
    top: 10px;
}

.toggle span.toggle {
    background: transparent;
}

.toggle span.toggle:before {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;

}

.toggle span.toggle:after {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
}

/* sidemenu start */

.header .navbar .navbar-brand {
    margin: 0;
}

.header .navbar .main-ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px 0 0;
}

.header .navbar .main-ul .spaces {
    height: 4.5rem;
}

.header .navbar .main-ul .spaces ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 24px;
}

.header .navbar .main-ul .spaces ul .nav-item .dashboard_bar{
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #01BA7C;
    font-family: "Matter-Medium";
    text-transform: capitalize;
}

.header .navbar .main-ul .spaces ul .nav-item.for-togle {
    background: #01ba7c;
    border-radius: 0 10px 10px 0;
    padding: 5px 10px;
}

.header .navbar .main-ul .spaces ul .nav-item .nav-link {
    margin: 0;
    padding: 0;
}

.header .navbar .main-ul .spaces ul .nav-item .nav-link i {
    color: #313747;
    font-weight: 500;
    font-size: 18px;
}

.header .navbar .main-ul .spaces ul .nav-item {
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: inherit;
    flex-wrap: nowrap;
    flex-direction: row;
}

.header .navbar .main-ul .spaces ul .nav-item.no-bg {
    background: transparent;
}

.header .navbar .main-ul .spaces ul .nav-item .logo-top {
    min-width: 80px;
    max-width: 80px;
    min-height: 60px;
    max-height: 60px;
    object-fit: fill;
    border-radius: 0.5rem;
}

.header .navbar .profile-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 0;
}

.header .navbar .profile-box .main-img {
    position: relative;
}

.header .navbar .profile-box .main-img img {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    object-fit: fill;
    border-radius: 0.5rem;
}

.header .navbar .profile-box .main-img .status {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    transition: all 0.5s;
}

.header .navbar .profile-box .main-img .status span {
    min-width: 10px;
    max-width: 10px;
    min-height: 10px;
    max-height: 10px;
    background-color: #09AA89;
    border: 2px solid #FDF7F2;
    display: block;
    border-radius: 100px;
    transition: all 0.5s;
}

.header .navbar .profile-box .info {
    margin: 0 0 0 10px;
}

.header .navbar .profile-box .info h5 {
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    color: #313747;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
}

.header .navbar .profile-box .info p {
    text-transform: capitalize;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.header .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 400;
    display: inline-block;
    color: #3f4358;
    position: relative;
    outline-width: 0;
    font-family: 'DM Sans', sans-serif;
}

.header .navbar .nav-item .dropdown-menu .dropdown-item.active {
    background-color: #313747;
    color: #fff;
}

.header .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    color: #313747;
    background-color: #FFD765;
}

.header .navbar .nav-item .dropdown-menu .dropdown-item i {
    color: #313747;
}

.header .navbar .nav-item .dropdown-menu .dropdown-item.active i {
    color: #fff;
}

.header .sub-header {
    padding: 5px 60px;
    height: auto;
    display: flex;
    background-color: transparent;
    align-items: center;
    border-top: 1px solid transparent;
}

.header .sub-header .dashboard_bar {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #01BA7C;
    font-family: "Matter-Medium";
    text-transform: capitalize;
}

/* offcanvas search-bar start */

.offcanvas.search-bar {
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas.search-bar .offcanvas-body .search-h {
    font-family: "Matter-Bold";
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 30px 0;
    display: block;
    text-align: center;
}

.offcanvas.search-bar .offcanvas-body .search .search-control {
    background-color: rgb(245, 245, 247);
    font-family: "Matter-Bold";
    font-size: 13px;
    font-weight: 400;
    color: #000;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding-left: 25px;
    height: 45px;
}

.offcanvas.search-bar .offcanvas-body .search .search-btn {
    color: #fff;
    height: 45px;
    width: 45px;
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #01BA7C;
    background: #01BA7C;
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
}

/* offcanvas search-bar close */

/**************************** Header css End ***************************/
/*********************** sidebar start ***********************/
.sidebar {
    width: 17.5rem;
    padding-bottom: 0;
    height: calc(100% - 0px);
    position: fixed;
    top: 0;
    padding-top: 0;
    z-index: 999;
    background-color: #01BA7C;
    transition: all .2s ease;
    box-shadow: 0px 15px 30px 0px rgb(0 0 0 / 2%);
}

.sidebar-scroll .nav-header {
    height: 4.5rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 46px;
}

.sidebar-scroll .nav-header ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 8px;
}

.sidebar-scroll .nav-header ul li {
    min-width: 13px;
    max-width: 13px;
    min-height: 13px;
    max-height: 13px;
    background-color: #FF544E;
    border-radius: 100px;
}

.sidebar-scroll .nav-header ul li:nth-child(2) {
    background-color: #FFBD2E;
}

.sidebar-scroll .nav-header ul li:nth-child(3) {
    background-color: #2F5634;
}

.sidebar-scroll .nav-header .brand-logo {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    padding-left: 20px;
    padding-right: 50px;
    font-weight: 600;
}

.sidebar-scroll .nav-header .brand-logo img {
    min-width: 100px;
    max-width: 100px;
    min-height: auto;
    max-height: fit-content;
    object-fit: fill;
    border-radius: 0.5rem;
}

.sidebar-scroll .main-profile {
    text-align: center;
    padding: 0;
    position: relative;
    margin: 45px 0 0 0;
}

.sidebar-scroll .main-profile .image-bx {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    transition: all 0.5s;
}

.sidebar-scroll .main-profile .image-bx .status {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 28px 14px 0;
    transition: all 0.5s;
}

.sidebar-scroll .main-profile .image-bx .status span {
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    background-color: #09AA89;
    border: 2px solid #FDF7F2;
    display: block;
    border-radius: 100px;
    transition: all 0.5s;
}

.sidebar-scroll .main-profile .image-bx img {
    border-radius: 100px;
    object-fit: cover;
    min-width: 200px;
    max-width: 200px;
    min-height: 195px;
    max-height: 195px;
    object-position: top;
    transition: all 0.5s;
}

.sidebar-scroll .main-profile .name {
    font-size: 30px;
    font-family: 'DM Sans', sans-serif;
    color: #313747;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 40px;
}

.sidebar-scroll .main-profile .name span {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.sidebar-scroll .main-profile .email {
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    color: #7e7e7e;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

.sidebar-scroll .metismenu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 40px 0 0 0;
    gap: 10px;
    min-height: 420px;
    max-height: 420px;
    overflow-y: scroll;
    padding: 10px 20px;
}

.sidebar-scroll .metismenu .nav-label {
    margin: 10px 25px 0;
    padding: 1.5625rem 0 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05rem;
    border-top: 1px solid #313747;
    color: #ffffff;
}

.sidebar-scroll .metismenu .nav-label.first {
    border: 0px;
    margin-top: 0px;
}

.sidebar-scroll .metismenu>li {
    display: flex;
    flex-direction: column;
}

.sidebar-scroll .metismenu li {
    position: relative;
}

.sidebar-scroll .metismenu li a {
    font-size: 18px;
    padding: 13px 30px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 500;
    display: inline-block;
    color: #fff;
    position: relative;
    outline-width: 0;
    font-family: 'DM Sans', sans-serif;
    align-items: center;
    display: flex;
    gap: 10px;
    line-height: 23.44px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    border-radius: 8px;
}

.sidebar-scroll .metismenu li a.active::before {
    width: 6px;
}

.sidebar-scroll .metismenu li a.active {
    background: #FFD765;
    color: #313747;
    box-shadow: none;
}

.sidebar-scroll .metismenu li a.active i {
    color: #313747;
}

.sidebar-scroll .metismenu li a .nav-text {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.sidebar-scroll .metismenu li a:hover .nav-text {
    transform: translateX(10px);
}

.sidebar-scroll .metismenu>li:hover>a,
.sidebar-scroll .metismenu>li:focus>a {
    color: #313747;
    background: #FFD765;
}

.sidebar-scroll .metismenu>li:hover>a i,
.sidebar-scroll .metismenu>li:focus>a i {
    color: #313747;
}

.sidebar-scroll .metismenu li a i {
    color: #313747;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    padding: 0;
    position: relative;
    top: 0;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    max-width: 22px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-scroll .metismenu li .has-arrow:after {
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: inherit;
    right: 1.5rem;
    -webkit-transform: rotate(-225deg) translateY(-50%);
    transform: rotate(-225deg) translateY(-50%);
    -webkit-transform-origin: top;
    transform-origin: top;
    top: 48%;
    transition: all .3s ease-out;
}

.sidebar-scroll .metismenu li .has-arrow[aria-expanded=true]:after {
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
}

.sidebar-scroll .metismenu ul {
    transition: all .2s ease-in-out;
    position: relative;
    z-index: 1;
    padding: 0.5rem 0;
}

.sidebar-scroll .metismenu li .mydrop.show {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background: #313747;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
}

.sidebar-scroll .metismenu li .dropdown li .link-child {
    font-size: 14px;
    padding: 6px 0;
    padding-left: 3.4rem;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 400;
    display: inline-block;
    color: #fff;
    position: relative;
    outline-width: 0;
    font-family: 'DM Sans', sans-serif;
    align-items: center;
    display: flex;
    border-radius: 0px;
}

.sidebar-scroll .metismenu li .dropdown li .link-child:before {
    position: absolute;
    height: 7px;
    width: 7px;
    border: 2px solid #fff;
    content: "";
    border-radius: 26px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    left: 30px;
}

.sidebar-scroll .metismenu li .dropdown li .link-child:hover:before {
    border: 2px solid #313747;
}

.sidebar-scroll .metismenu li .dropdown li .link-child.active {
    background: #f5f5f5;
    color: #01BA7C;
}

.sidebar-scroll .metismenu li .dropdown li .link-child.active:before {
    border: 2px solid #01BA7C;
}

.sidebar-scroll .metismenu li .dropdown li .link-child:hover {
    background: #f5f5f5;
    color: #313747;
}

/*********************** sidebar close ***********************/
/*********************** Fotter start ***********************/
.footer {
    padding-left: 17.5rem;
    background-color: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: none;
    /* box-shadow: 0 0 8px 2px rgb(0 0 0 / 5%); */
}

.footer .copyright {
    padding: 0;
}

.footer .copyright p {
    font-size: 14px;
    font-weight: 500;
    color: #3f4358;
    letter-spacing: 1.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    opacity: 0.7;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer .copyright p a {
    color: #01BA7C;
}

/*********************** Fotter close ***********************/
/*********************** Main-Content start ***********************/
/* home-page-css-start */
.content-body.home-sec {
    padding-top: 0px;
    padding-bottom: 0;
}

.content-body.home-sec .pad-cl {
    padding-top: 0px;
    padding-right: 0px;
    background: transparent;
}

.content-body.home-sec .pad-cl .borwser-pg {
    position: relative;
    background-image: url(../images/browserPg-bg.jpg);
    background-repeat: no-repeat;
    background-position: 100% 0%;
    padding: 110px 0 120px 0;
    background-size: cover;
}

.home-sec .lovemain-box {
    margin: 85px 0 0 0;
}

.home-sec .lovemain-box .swiper-container {
    position: relative;
    min-width: 685px;
    max-width: 685px;
    min-height: 765px;
    max-height: 765px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}

.home-sec .lovemain-box .swiper-container>.swiper-slide__content {
    position: absolute;
    top: 0;
}

.home-sec .lovemain-box .swiper-container .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8) !important;
}

.home-sec .lovemain-box .swiper-container .swiper-slide-active {
    transform: scale(1) !important;
    z-index: 999;
}

.home-sec .lovemain-box .swiper-container .swiper-slide__content {
    height: 300px;
}

.home-sec .lovemain-box .swiper-container .swiper-slide-active .love-card .infoBx {
    opacity: inherit;
    visibility: visible;
}

.home-sec .lovemain-box .swiper-container .swiper-slide-active .love-card {
    min-width: 405px;
    max-width: 405px;
}

.home-sec .lovemain-box .love-card {
    overflow: hidden;
}

.home-sec .lovemain-box .love-card .main-img {
    position: relative;
    overflow: hidden;
}

.home-sec .lovemain-box .love-card .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 565px;
    max-height: 565px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    opacity: 0.4;
}

.home-sec .lovemain-box .swiper-container .swiper-slide-active .love-card .main-img img {
    opacity: inherit;
}

.home-sec .lovemain-box .swiper-container .swiper-slide-active .love-card .main-img::before {
    display: none;
}

.home-sec .lovemain-box .love-card .main-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    opacity: 0.7;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), lightgray 50%;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.home-sec .lovemain-box .love-card .infoBx {
    text-align: center;
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;
}

.home-sec .lovemain-box .love-card .infoBx h2 {
    color: #313747;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.84px;
    margin: 0 0 10px 0;
    font-family: 'DM Sans', sans-serif;
}

.home-sec .lovemain-box .love-card .infoBx p {
    color: #A8A8A8;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
}

.home-sec .lovemain-box .love-card .infoBx p i {
    color: #717171;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box {
    margin: 24px 0 0 0;
    justify-content: center;
    gap: 24px;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box .btn-love i {
    color: #F65142;
    font-size: 34px;
    font-weight: 900;
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    border-radius: 100px;
    background-color: #fff;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box .btn-love:nth-child(2) i {
    color: #31C8F9;
    min-width: 58px;
    max-width: 58px;
    min-height: 58px;
    max-height: 58px;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box .btn-love:nth-child(2) i:hover {
    background-color: #31C8F9;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box .btn-love:nth-child(3) i:hover {
    background-color: #39FEB2;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box .btn-love:nth-child(3) i {
    color: #39FEB2;
}

.home-sec .lovemain-box .love-card .infoBx .btn-box .btn-love i:hover {
    background-color: #F65142;
    color: #fff;
}

/* home-page-css-end */
.content-body {
    margin-left: 17.5rem;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    background-color: #ffffff;
    transition: all .2s ease;
}

.pad-cl {
    padding-top: 0;
    padding-right: 40px;
    padding-left: 60px;
}

.content-body.home-sec .pad-cl .borwser-pg .db-banner {
    margin: 0 0 24px 0;
}

.db-banner {
    padding: 0;
    background: transparent;
    border-radius: 0.5rem;
}

.db-banner .welcom-text h4 {
    font-size: 44px;
    font-weight: 500;
    color: #313747;
    font-family: "Matter-Medium";
    text-transform: capitalize;
    line-height: 52.8px;
}

.db-banner .welcom-text p {
    font-size: 15px;
    font-weight: 400;
    color: #7e7e7e;
    font-family: 'DM Sans', sans-serif;
    text-transform: unset;
    margin: 4px 0 0 0;
}

.db-banner .welcom-text ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.db-banner .welcom-text ul li {
    font-size: 20px;
    font-weight: 400;
    color: #7e7e7e;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    margin: 0 10px 0 0;
    padding: 0;
}

.db-banner .welcom-text ul li a {
    font-size: 20px;
    font-weight: 700;
    color: #01BA7C;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

.content-box {
    margin: 50px 0 0 0;
}

.card-box {
    padding: 36px 50px;
    background: #fff;
    box-shadow: 0px 3px 12px 0px #0000001A;
    border-radius: 16px;
}

.card-box .input-main {
    margin: 0;
}

.card-box .input-main .form-select,
.card-box .input-main .form-control {
    border: 1px solid #E6E6E6;
    height: 46px;
}

.card-box .btn-box .btn-wh {
    width: 100%;
    height: 46px;
    border-radius: 100px;
}

.sub-content {
    padding: 2.9375rem 1.875rem;
    background: #fff;
    margin-bottom: 1.875rem;
    border-radius: 0.5rem;
    margin-top: 50px;
}

.sub-content h5 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: left;
}

/* button css */
.button-box a.text {
    font-size: 14px;
    font-weight: 500;
    color: #3f4358;
    letter-spacing: 1.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    opacity: 0.7;
    transition: all .5s ease-in-out;
    margin: 0;
    padding: 0;
}

.button-box a.text:hover {
    color: #01BA7C;
}

.button-box .btn-primary {
    background-color: #01ba7c;
    border-color: #01ba7c;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

.button-box .btn-primary:hover {
    background-color: transparent;
    color: #01ba7c;
}

.button-box .btn-outline-secondary {
    background-color: transparent;
    color: #01ba7c;
    border-color: #01ba7c;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

.button-box .btn-outline-secondary:hover {
    background-color: #01ba7c;
    border-color: #01ba7c;
    color: #fff;
}

.button-box .btn-icon {
    padding: 0.1875rem;
    width: 1.625rem;
    height: 1.625rem;
    min-width: 1.625rem;
    min-height: 1.625rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* button css */

/* table css start */

.main-table thead {
    border-bottom: 1px solid #fff;
    background: #fff;
}

.main-table thead tr {
    border-bottom: 1px solid #fff;
}

.main-table thead tr th {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    margin: 0;
    padding: 10px 20px;
    border: none;
}

.main-table tbody tr {
    border-bottom: 1px solid #EEEEEE;
}

.main-table tbody tr:last-child {
    border-bottom: 1px solid #111;
}

.main-table tbody tr td .main-img .table-img {
    min-width: 100px;
    max-width: 100px;
    object-fit: contain;
    min-height: 80px;
    max-height: 80px;
    border-radius: 10px;
}

.main-table tbody tr td h5 {
    font-size: 20px;
    font-weight: 600;
    color: #3f4358;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    padding: 0;
}

.main-table tbody tr td .desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #3f4358;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: -0.5px;
    width: 300px;
}

.main-table tbody tr td {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #3f4358;
    text-transform: capitalize;
    margin: 0;
    padding: 15px 20px;
    letter-spacing: -0.5px;
    vertical-align: middle;
}

.main-table tbody tr td a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #3f4358;
    text-transform: capitalize;
    margin: 0;
    padding: 0 5px 0 0;
    letter-spacing: 0;
    vertical-align: middle;
    transition: all .3s ease-in-out;
}

.main-table tbody tr td a:hover {
    color: #01BA7C;
}

.badge-success {
    background-color: #68CF29;
}

.badge-primary {
    background-color: #01BA7C;
}

.badge-secondary {
    background-color: #6418C3;
}

.page-item.disabled .page-link {
    color: #01BA7C;
    pointer-events: none;
    background-color: #fff;
    border-color: #01BA7C;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #01BA7C;
    border-color: #01BA7C;
}

.page-item.active .page-link:focus {
    box-shadow: none;
}

.page-item .page-link {
    color: #01BA7C;
    border: 1px solid #01BA7C;
}

.page-item .page-link:focus {
    box-shadow: none;
}

.pagination .paginate_button {
    margin: 0 5px 0 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #01BA7C;
    outline: 0;
    box-shadow: none;
}

.form-select:focus {
    border-color: #01BA7C;
    outline: 0;
    box-shadow: none;
}

/* table css end */

/* tabs css start */
.nav-tabs .nav-link.active {
    color: #01BA7C;
    position: relative;
    transition: all .5s ease-in-out;
}

.nav-tabs .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: #01BA7C;
    left: 0;
}

.nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 18px 15px;
    position: relative;
    margin: 0;
    transition: all .5s ease-in-out;
}

.nav-tabs .nav-link:hover {
    color: #01BA7C;
}

.tab-content .tab-pane .info-box {
    padding: 50px 20px 20px;
}

.tab-content .tab-pane .info-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: #01BA7C;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: left;
}

.tab-content .tab-pane .info-box p {
    font-size: 14px;
    font-weight: 500;
    color: #3f4358;
    letter-spacing: 1.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    opacity: 0.7;
    margin: 0 0 25px 0;
    padding: 0;
}

.tab-content .tab-pane .info-box ul li {
    font-size: 14px;
    font-weight: 500;
    color: #3f4358;
    letter-spacing: 1.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    opacity: 0.7;
    margin: 0 0 5px 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.tab-content .tab-pane .info-box ul li span {
    display: block;
    width: 150px;
    color: #000;
    font-weight: 700;
    opacity: initial;
}

/* tabs css end */
/*********************** Main-Content close ***********************/
/*********************** Chat css Start ***********************/
.chat-main {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 0;
    gap: 0;
    border-radius: 18px;
    background: #F4F5F7;
}

.chat-main .user-box {
    width: 25%;
    border-radius: 18px 0px 0px 18px;
    background: #FFF;
    box-shadow: -4px 3px 12px 0px rgba(0, 0, 0, 0.08);
    padding: 44px 22px;
}

.chat-main .user-box .users-head {
    margin: 0 0 42.66px 0;
}

.chat-main .user-box .users-head .from-group {
    position: relative;
}

.chat-main .user-box .users-head .from-group .form-control {
    padding: 0 0 0 45px;
    height: 44px;
    border-radius: 8px;
    background: #F4F5F7;
    color: #58585B;
    border: 1px solid transparent;
}

.chat-main .user-box .users-head .from-group span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.chat-main .user-box .users-head .from-group span i {
    color: #58585B;
}

.chat-main .user-box .user-list {
    min-height: 560px;
    max-height: 560px;
    overflow-y: scroll;
}

.chat-main .user-box .user-list .user-card {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16.04px;
    padding: 12.83px 20px;
    border-radius: 10px;
    margin: 0 3px 24.34px 20px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background: #fff;
}

.chat-main .user-box .user-list .user-card.active {
    background: #FFD765;
}

.chat-main .user-box .user-list .user-card:hover {
    background: #FFD765;
}

.chat-main .user-box .user-list .user-card .main-img {
    position: relative;
    border-radius: 100px;
    background: #09AA89;
    padding: 3px 3px;
}

.chat-main .user-box .user-list .user-card .main-img img {
    min-width: 54.37px;
    max-width: 54.37px;
    min-height: 54.37px;
    max-height: 54.37px;
    object-fit: cover;
    object-position: top;
    border-radius: 100px;
    border: 1.6px solid #FFF;
}

.chat-main .user-box .user-list .user-card .main-img .active {
    position: absolute;
    bottom: 5px;
    right: 3px;
    background: #096401;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.chat-main .user-box .user-list .user-card .info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #313747;
    margin-bottom: 0;
    text-transform: capitalize;
    font-family: "Matter-SemiBold";
    letter-spacing: 0.54px;
    opacity: 0.9;
}

.chat-main .user-box .user-list .user-card .info p {
    font-size: 12px;
    text-transform: capitalize;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    letter-spacing: 0.36px;
    font-weight: 600;
    color: #313747;
    font-family: "Matter-SemiBold";
    opacity: 0.9;
}

.chat-main .messages-box {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 33px 53px;
}
.chat-main .messages-box .mesages-list .image-bx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chat-main .messages-box .mesages-list .image-bx img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.chat-main .messages-box .mesages-list .image-bx .nameBox {
    text-align: center;
    margin-top: 20px;
}

.chat-main .messages-box .mesages-list .image-bx .nameBox h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}

.chat-main .messages-box .mesages-list .image-bx .nameBox h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}
.chat-main .messages-box .head {
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    padding: 0 10px 10px;
}

.chat-main .messages-box .head .user-plus-icon {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.chat-main .messages-box .head .user-plus-icon .icon-back i {
    color: #fff;
    background: #01BA7C;
    padding: 10px 11px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    display: none;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.chat-main .messages-box .head .user-plus-icon .icon-back i:hover {
    border: 1px solid #01BA7C;
    background: transparent;
    color: #01BA7C;
}

.chat-main .messages-box .head .user-card {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 5px 4px;
    margin: 0;
}

.chat-main .messages-box .head .user-card .main-img {
    position: relative;
}

.chat-main .messages-box .head .user-card .main-img img {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
}

.chat-main .messages-box .head .user-card .main-img .active {
    position: absolute;
    bottom: 5px;
    right: 3px;
    background: #096401;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.chat-main .messages-box .head .user-card .info h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
}

.chat-main .messages-box .head .user-card .info p {
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    color: #7e7e7e;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-toggle {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-toggle figure {
    margin: 0;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-toggle figure i {
    color: #000;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-toggle::after {
    display: none;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-menu {
    right: 0;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-menu li .dropdown-item {
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 400;
    display: inline-block;
    color: #3f4358;
    position: relative;
    outline-width: 0;
    font-family: 'DM Sans', sans-serif;
}

.chat-main .messages-box .head .user-action .dropdown .dropdown-menu li .dropdown-item.active {
    background-color: #01BA7C;
    color: #fff;
}

.chat-main .messages-box .mesages-list {
    width: 100%;
}

.chat-main .messages-box .mesages-list ul {
    min-width: 100%;
    max-width: 100%;
    min-height: 570px;
    max-height: 570px;
    padding: 10px 20px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    gap: 44px;
}

.chat-main .messages-box .mesages-list ul .timline-msg {
    color: #58585B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Matter-Medium";
    letter-spacing: 0.48px;
    opacity: 0.6;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-main .messages-box .mesages-list ul .sender {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    margin: 0 0 0 300px;
    gap: 14px;
}

.chat-main .messages-box .mesages-list ul .sender .main-img {
    position: relative;
    border-radius: 100px;
    background: #09AA89;
    padding: 2px 2px;
}

.chat-main .messages-box .mesages-list ul .sender .main-img img {
    min-width: 43.5px;
    max-width: 43.5px;
    min-height: 43.5px;
    max-height: 43.5px;
    object-fit: cover;
    object-position: top;
    border-radius: 100px;
    border: 1.6px solid #FFF;
}

.chat-main .messages-box .mesages-list ul .sender .msg-desc img {
    min-width: 210px;
    max-width: 210px;
    min-height: 180px;
    max-height: 180px;
    object-fit: fill;
    object-position: top;
    margin: 3px 0 0 0;
}

.chat-main .messages-box .mesages-list ul .sender .msg-desc p {
    font-size: 16px;
    color: #313747;
    font-weight: 400;
    text-transform: unset;
    margin: 0 0 0 auto;
    padding: 16px 16px;
    letter-spacing: 0.48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    opacity: 0.9;
    line-height: 24px;
    font-family: "Matter-Medium";
    border-radius: 10px;
}

.chat-main .messages-box .mesages-list ul .sender .msg-desc span {
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    color: #7e7e7e;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.chat-main .messages-box .mesages-list ul .reciver {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 300px 0 0;
    gap: 14px;
}

.chat-main .messages-box .mesages-list ul .reciver .main-img {
    position: relative;
    border-radius: 100px;
    background: #09AA89;
    padding: 2px 2px;
}

.chat-main .messages-box .mesages-list ul .reciver .main-img img {
    min-width: 43.5px;
    max-width: 43.5px;
    min-height: 43.5px;
    max-height: 43.5px;
    object-fit: cover;
    object-position: top;
    border-radius: 100px;
    border: 1.6px solid #FFF;
}

.chat-main .messages-box .mesages-list ul .reciver .msg-desc img {
    min-width: 210px;
    max-width: 210px;
    min-height: 180px;
    max-height: 180px;
    object-fit: fill;
    object-position: top;
    margin: 3px 0 0 0;
}

.chat-main .messages-box .mesages-list ul .reciver .msg-desc p {
    font-size: 16px;
    color: #313747;
    font-weight: 400;
    text-transform: unset;
    margin: 0;
    padding: 16px 16px;
    letter-spacing: 0.48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    opacity: 0.9;
    line-height: 24px;
    font-family: "Matter-Medium";
    border-radius: 10px;
}

.chat-main .messages-box .mesages-list ul .reciver .msg-desc span {
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    color: #7e7e7e;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.chat-main .messages-box .send-box {
    width: 100%;
}

.chat-main .messages-box .send-box .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.chat-main .messages-box .send-box .form-group .form-control {
    border: 1px solid #CACACA;
    background: #FFF;
    height: 56px;
    border-radius: 100px;
    color: #313747;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.48px;
    padding: 17px 29px;
    font-family: "Matter-Medium";
}

.chat-main .messages-box .send-box .btn-box {
    flex-wrap: nowrap;
    gap: 10px;
}

.chat-main .messages-box .send-box .btn-box .btn-video {
    width: 57px;
    height: 57px;
    border-radius: 100px;
    background-color: #fff;
    color: #01BA7C;
    font-size: 22px;
    transition: all .5s ease-in-out;
}

.chat-main .messages-box .send-box .btn-box .btn-video:hover {
    background-color: #01BA7C;
    color: #fff;
}

.chat-main .messages-box .send-box .btn-box .btn-wh {
    height: 56px;
    border-radius: 100px;
    width: 122px;
}

.chat-main .messages-box .send-box .file-attatch {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    display: none;
}

/* image css start */
.chat-main .messages-box .send-box .file-attatch .image-input {
    box-sizing: border-box;
    display: flex;
    width: 80px;
    height: 80px;
    background: whitesmoke;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
    margin: 0 10px 10px 0;
    align-items: center;
    justify-content: center;
}

.chat-main .messages-box .send-box .file-attatch .image-input::before {
    content: "";
    background-image: url(../images/upload.PNG);
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 30px;
    left: 25px;
    top: 24px;
    opacity: 0.3;
    transition: opacity 200ms;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.chat-main .messages-box .send-box .file-attatch .image-input input[type=file] {
    opacity: 0;
    display: block;
    height: 100px;
    pointer-events: none;
}

.chat-main .messages-box .send-box .file-attatch .image-input img {
    position: absolute;
    display: block;
    border-radius: 4px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 200ms;
    opacity: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    background: white;
    z-index: 1;
}

.chat-main .messages-box .send-box .file-attatch .image-input img[src=""] {
    opacity: 0;
    pointer-events: none;
}

.chat-main .messages-box .send-box .file-attatch .image-input .image-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 1;
    border: none;
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 12px;
    cursor: pointer;
}

.chat-main .messages-box .send-box .file-attatch .image-input .image-remove::before {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background: #333;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 4px;
}

.chat-main .messages-box .send-box .file-attatch .image-input .image-remove::after {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background: #333;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 4px;
}

.chat-main .messages-box .send-box .file-attatch .image-input .image-remove::before {
    transform: rotate(45deg);
}

.chat-main .messages-box .send-box .file-attatch .image-input .image-remove::after {
    transform: rotate(-45deg);
}

/* image css start */

/*********************** Chat css End ***********************/
/*********************** Matches page css Start ***********************/
.match-card {
    padding: 20px 20px;
    border-radius: 18px;
    background: #FFF;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    margin: 0 0 44px 0;
}

.match-card .main-img {
    text-align: center;
}

.match-card .main-img img {
    border-radius: 100px;
    min-width: 135px;
    max-width: 135px;
    min-height: 135px;
    max-height: 135px;
    object-fit: cover;
    object-position: top;
}

.match-card .desc {
    text-align: center;
}

.match-card .desc h2 {
    color: #313747;
    font-size: 22.722px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.682px;
    font-family: "Matter-Medium";
    margin: 16px 0 08px 0;
}

.match-card .desc p {
    color: #A4A4A4;
    font-size: 17.042px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.511px;
    font-family: "Matter-Regular";
}

.match-card .desc .btn-box {
    margin: 20px 0 0 0;
}

.match-card .desc .btn-box .btn-wh {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

/*********************** Matches page css End ***********************/
/*********************** Liekme page page css Start ***********************/
.match-card.likeme .desc .btn-box {
    gap: 30px;
    justify-content: center;
}

.match-card.likeme .desc .btn-box .btn-like i:hover {
    background: #39FEB2;
    color: #fff;
}

.match-card.likeme .desc .btn-box .btn-dislike i:hover {
    background: #F65142;
    color: #fff;
}

.match-card.likeme .desc .btn-box .btn-like i {
    color: #39FEB2;
    font-size: 26px;
    font-weight: 700;
    width: 55px;
    height: 55px;
    background: #fff;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.match-card.likeme .desc .btn-box .btn-dislike i {
    color: #F65142;
    font-size: 30px;
    font-weight: 700;
    width: 55px;
    height: 55px;
    background: #fff;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

/*********************** Liekme page page css End ***********************/
/*********************** gift page page css Start ***********************/
.match-card.gift-card {
    box-shadow: none;
}

.match-card.gift-card .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 250px;
    max-height: 250px;
    border-radius: 18px;
    border: 3px solid #FFD765;
    object-position: inherit;
}

/*********************** gift page page css End ***********************/
/*********************** imam-cornerpage page css Start ***********************/
.featured-box {
    border-top: 1px solid #00000038;
    padding: 50px 0 0 0;
    margin: 50px 0 0 0;
}

.featured-box h2 {
    color: #313747;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
    font-family: "Matter-Medium";
    margin: 0 0 36px 0;
}

.featured-box .imam-card {
    border-radius: 18px;
    background: #FFF;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);
    padding: 24px 24px;
    margin: 20px 10px;
}

.featured-box .imam-card .info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 23px;
}

.featured-box .imam-card .info .main-img img {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    object-fit: cover;
    border-radius: 24px;
}

.featured-box .imam-card .info .desc h3 {
    color: #313747;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    font-family: "Matter-Medium";
}

.featured-box .imam-card .info .desc p {
    color: #A4A4A4;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.6px;
    font-weight: 400;
    font-family: "Matter-Regular";
}

.featured-box .imam-card .btn-box {
    margin: 30px 0 0 0;
    flex-wrap: nowrap;
}

.featured-box .imam-card .btn-box .btn-wh {
    height: 40px;
    border-radius: 8px;
    width: 100%;
}

.imam-form h2 {
    color: #313747;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
    font-family: "Matter-Medium";
    margin: 0 0 36px 0;
}

.imam-form .input-main {
    margin: 0 0 50px 0;
}

.imam-form .input-main .form-control {
    border-radius: 100px;
    border: 1px solid var(--Light-Grey, #D2D2D2);
    background: var(--White, #FFF);
}

.imam-form .input-main .form-control::placeholder {
    color: var(--Grey, #8F8F8F);
    font-size: 16px;
    font-style: normal;
    font-family: "Matter-Regular";
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

.imam-form .btn-box .btn-wh {
    height: 46px;
    border-radius: 8px;
    width: 150px;
}

/*********************** imam-cornerpage page css End ***********************/
/*********************** profile page css Start ***********************/
.profile-pg .pad-cl {
    padding-right: 0px;
}

.content-box.edit-pf {
    margin: 158px 0 0 0;
}

.banner-profile {
    background-image: url(../images/profile-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    border-radius: 55px 0px 0px 0px;
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.banner-profile .profile-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 24px;
    margin: 0 0 -124px 70px;
}

.banner-profile .profile-card .main-img img {
    min-width: 180px;
    max-width: 180px;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
    border-radius: 100px;
    border: 4px solid #FFF;
}

.banner-profile .profile-card .desc h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.28px;
    font-family: "Matter-Medium";
}

.banner-profile .profile-card .desc p {
    color: #667275;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.72px;
    text-transform: lowercase;
    font-family: "Matter-Medium";
}

.profile-setting .btn-box {
    align-items: flex-end;
    height: 100%;
}

.profile-setting .btn-box .btn-wh {
    border-radius: 7px;
    width: 100%;
    height: 42px;
}

.profile-setting h4 {
    color: #212121;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Matter-SemiBold";
    letter-spacing: 0.72px;
}

.profile-setting ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0 0 0;
}

.profile-setting ul li {
    width: 100%;
}

.profile-setting ul li .settings-cd {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 30px;
}

.profile-setting ul li .settings-cd i {
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #7A14FD;
    font-size: 20px;
}

.profile-setting ul li .settings-cd .desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
}

.profile-setting ul li .settings-cd .desc h5 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.54px;
    font-family: "Matter-Medium";
}

.profile-setting ul li .settings-cd .desc .icon-bx i {
    background-color: transparent;
    color: #BCBCBC;
}

.profile-setting ul li:nth-child(2) .settings-cd i {
    background-color: #02C6DE;
}

.profile-setting ul li:nth-child(3) .settings-cd i {
    background-color: #65CF67;
}

.profile-setting ul li:nth-child(4) .settings-cd i {
    background-color: #FFB935;
}

.profile-setting ul li:nth-child(5) .settings-cd i {
    background-color: #7C15FD;
}

.profile-setting ul.Notifications li .settings-cd i {
    background-color: #FF6668;
}

.profile-setting ul.Notifications li:nth-child(2) .settings-cd i {
    background-color: #10C2D7;
}

.profile-setting ul.Notifications li:nth-child(3) .settings-cd i {
    background-color: #FDBB3B;
}

/*********************** profile page css End ***********************/
/*********************** Login page css Start ***********************/
.register-sec-wrap {
    /* background-image: url(../images/Login4.jpg); */
    background-size: cover;
    background-position: 100% 0%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    /* padding: 100px 0; */
}

.register-sec-wrap .main-img {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
}

.register-sec-wrap .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.register-sec-wrap .form-main {
    padding: 50px 0 20px 0;
}

.register-sec-wrap .form-main figure img {
    min-width: 120px;
    max-width: 120px;
    min-height: 115px;
    max-height: 115px;
    object-fit: contain;
}

.register-sec-wrap .form-main .heads {
    margin: 36px 0 44px 0;
}

.register-sec-wrap .form-main .heads h2 {
    color: #313747;
    font-family: "Matter-SemiBold";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 12px 0;
}

.register-sec-wrap .form-main .heads p {
    color: #8F8F8F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Matter-Regular";
}

.register-sec-wrap .form-main .input-main {
    margin: 0 0 36px 0;
    overflow: hidden;
}

.register-sec-wrap .form-main .input-main .form-group {
    position: relative;
}

.register-sec-wrap .form-main .input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #74769E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
}

.register-sec-wrap .form-main .input-main label {
    font-size: 18px;
}

.register-sec-wrap .form-main .input-main .form-select,
.register-sec-wrap .form-main .input-main .form-control {
    border-radius: 5px;
    border: 1px solid #D2D2D2;
    background: #fff;
    height: 54px;
}

.register-sec-wrap .form-main .input-main textarea.form-control {
    height: 268.83px;
}

.register-sec-wrap .form-main .input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 16px 0 0 0;
    font-size: 16px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
    font-family: "Matter-Regular";
}

.register-sec-wrap .form-main .form-check .form-check-input:checked {
    background-color: #FB9155;
    border-color: #FB9155;
}

.register-sec-wrap .form-main .form-check .form-check-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    text-transform: unset;
    margin: 0;
    padding: 0;
    color: #232F3F;
}

.register-sec-wrap .form-main .fm-btn {
    margin: 44px 0 24px 0;
}

.register-sec-wrap .form-main .btn-box .btn-wh {
    border-radius: 100px;
    width: 100%;
    height: 54px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.54px;
    font-family: "Matter-Medium";
}

.register-sec-wrap .form-main .fm-bttom {
    text-align: center;
    margin: 30.5px 0 24px 0;
}

.register-sec-wrap .form-main .fm-bttom .icons-list h6 {
    position: relative;
    font-size: 17px;
    line-height: 26px;
    color: #8F8F8F;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.register-sec-wrap .form-main .fm-bttom .icons-list h6::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    height: 1px;
    width: 28%;
    background-color: #D2D2D2;
}

.register-sec-wrap .form-main .fm-bttom .icons-list h6::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    height: 1px;
    width: 28%;
    background-color: #D2D2D2;
}

.register-sec-wrap .form-main .fm-bttom .icons-list ul {
    margin: 17.5px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 43px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.register-sec-wrap .form-main .fm-bttom .icons-list ul li {
    width: 100%;
}

.register-sec-wrap .form-main .fm-bttom .icons-list ul li .btn-inlogin {
    border-radius: 5px;
    border: 1px solid #D2D2D2;
    background: #fff;
    height: 54px;
    width: 100%;
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.register-sec-wrap .form-main .fm-bttom .icons-list ul li .btn-inlogin img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    border-radius: 100px;
    object-fit: contain;
}

.register-sec-wrap .form-main .fm-bttom p {
    font-size: 17px;
    font-weight: 400;
    color: #232F3F;
}

.register-sec-wrap .form-main .link {
    text-align: center;
    color: #8F8F8F;
}

.register-sec-wrap .form-main .link a {
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Matter-SemiBold";
}

/*********************** Login page css End ***********************/
/*********************** Welcome page css Start ******************/
.welcome-sec {
    background-image: url(../images/welcome.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-sec .content {
    text-align: center;
    min-width: 640px;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.welcome-sec .content::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -35%;
    background-image: url(../images/heart.png);
    min-width: 160px;
    max-width: 160px;
    min-height: 160px;
    max-height: 160px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.welcome-sec .content .main-img {
    margin: 0 0 64px;
}

.welcome-sec .content .main-img ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}

.welcome-sec .content .main-img ul li img {
    min-width: 100%;
    max-width: 100%;
    min-height: 91px;
    max-height: 91px;
    object-fit: contain;
}

.welcome-sec .content .desc h2 {
    color: #313747;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.92px;
    font-family: "Matter-Bold";
    margin: 0 0 10px 0;
}

.welcome-sec .content .desc p {
    color: #01BA7C;
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.72px;
    font-family: "Matter-Regular";
}

.welcome-sec .content .btn-box {
    justify-content: center;
    margin: 100px 0 0 0;
}

.welcome-sec .content .btn-box .btn-wh {
    border-radius: 8px;
    height: 54px;
    width: 200px;
}

/*********************** Welcome page css End ********************/
/*********************** Profile Detail page css start ********************/

.profile-detail-wrap{
    border-top: 1px solid #000;
    padding: 50px 0;
    margin: 50px 0 0 0;
}
.profile-detail-wrap .profile-detail-img{}
.profile-detail-img img{
    width: 100%;
}
.profile-detail-wrap .profile-detail-content{
    width: 60%;
}
.profile-detail-content h3{
    color: #313747;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.682px;
    font-family: "Matter-Medium";
    margin: 0 0 5px;
}
.profile-detail-content span.desig-tag{
    color: #b2b2b2;
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 10px;
    display: block;
}
.profile-detail-content a.location-tag{
    color: #313747;
    font-size: 20px;
    line-height: 26px;
    font-style: normal;
    letter-spacing: 0.682px;
    font-family: "Matter-Regular";
    margin: 0 0 30px;
    display: block;
}
.profile-detail-content h4{
    color: #313747;
    font-size: 24px;
    line-height: 30px;
    font-style: normal;
    letter-spacing: 0.682px;
    font-family: "Matter-Medium";
    margin: 0 0 10px;
    display: block;
}
.profile-detail-content p{
    color: #b2b2b2;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 10px;
    display: block;
}
.profile-detail-content .profile-content-buttons{
    display: flex;
    align-items: center;
    margin: 30px 0;
}
.profile-content-buttons a.follow-btn{
    position: relative;
    width: 200px;
    height: 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    color: #fff;
    background-color: #01BA7C;
    border: 1px double #01BA7C;
    overflow: hidden;
    transition: all .3s ease-in-out;
    margin: 0 10px;
}
.profile-content-buttons a.follow-btn:hover{
    background-color: #01BA7C;
}
.profile-content-buttons a.chat-btn{
    position: relative;
    width: 200px;
    height: 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    font-family: 'DM Sans', sans-serif;
    text-transform: capitalize;
    color: #313747;
    background-color: #FFD765;
    border: 1px double #FFD765;
    overflow: hidden;
    transition: all .3s ease-in-out;
    margin: 0 15px;
}
.profile-content-buttons a.chat-btn:hover{
    background-color: #FFD765;
}
.profile-detail-wrap .profile-detail-info{
    border-top: 1px solid #b2b2b2;
    margin: 50px 0 0 0;
    padding: 30px 0;
    position: relative;
}
.profile-detail-wrap .profile-detail-info::before{
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    background: #01BA7C;
    width: 100px;
    height: 3px;
}
.profile-detail-info h2{
    color: #313747;
    font-size: 50px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: 0.682px;
    font-family: "Matter-Medium";
    margin: 0 0 20px;
}
.profile-detail-info ul.profil-info-list{}
ul.profil-info-list li{
    margin: 0 0 20px;
}
ul.profil-info-list li h4{
    color: #313747;
    font-size: 22px;
    line-height: 28px;
    font-style: normal;
    letter-spacing: 0.682px;
    font-family: "Matter-Medium";
    margin: 0 0 5px;
}
ul.profil-info-list li span{
    color: #b2b2b2;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 10px;
    display: block;
}
/*********************** Profile Detail css End ********************/

/*********************** Edit Profile Detail css Start ********************/
.edit-profile-detail{
    padding: 50px 0;
}
.edit-profile-detail .edit-profile-form{}
.edit-profile-form .image-upload-group{
    text-align: center;
    width: 125px;
    height: 125px;
    border-radius: 100%;
    margin: 0 auto 50px;
    position: relative;
}
.edit-profile-form .image-upload-group::after{
    ontent: '\f304';
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 20px;
    bottom: 0;
    background: #FFD765;
    color: #313747;
    font-size: 11px;
    font-weight: 900;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 100%;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}
.edit-profile-form .image-upload-group .form-control{
    width: 125px;
    height: 125px;
    border-radius: 100%;
    margin: 0 auto;
    border: none;
    opacity: 0;
    position: absolute;
    z-index: 2;
}
.edit-profile-form .image-upload-group img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 125px;
    height: 125px;
    border-radius: 100%;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid #01BA7C;
    z-index: 1;
}
.edit-profile-form .form-group{
    width: 100%;
    display: inline-grid;
    margin: 15px 0;
}
.edit-profile-form .form-group label{
    color: #313747;
    font-family: "Matter-Medium";
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 10px;
}
.edit-profile-form .form-group input{
    background: transparent;
    color: #313747;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px;
    width: 100%;
}
.edit-profile-form .form-group input::placeholder{
    color: #b2b2b2;
}
.edit-profile-form .form-group select{
    background-color: #fff;
    color: #313747;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px
}
.edit-profile-form .form-group .form-group-check{
    display: flex;
    align-items: center;
}
.form-group-check .form-check{
    display: flex;
    align-items: center;
    margin: 0 20px 0 0;
    padding: 0;
}
.form-group-check .form-check input.form-check-input{
    border: 1px solid #313747;
    border-radius: 3px;
    outline: none;
    box-shadow: none;
    margin: 0 8px 0 0;
    cursor: pointer;
}
.form-group-check .form-check input.form-check-input:checked {
    background-color: #01BA7C;
    border-color: #01BA7C;
}
.form-group-check .form-check label.form-check-label{
    color: #313747;
    font-family: "Matter-Medium";
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.edit-profile-form .form-group button.submit-btn{
    font-family: 'DM Sans', sans-serif;
    background: #FFD765;
    color: #313747;
    border: 2px solid #FFD765;
    font-size: 16px;
    font-weight: 600;
    width: 150px;
    padding: 7px 10px;
    border-radius: 8px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}
.edit-profile-form .form-group button.submit-btn:hover{
    background: #01BA7C;
    color: #fff;
    border: 2px solid #01BA7C;
}
/*********************** Edit Profile Detail css End ********************/