/*-----------------------------------*\
#Mixins
\*-----------------------------------*/
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
:root {
    /**
    * colors
  */
    --yellow: #f1d089;
    --light: #eef1f6;
    --dark: #949494;
    --slate: #5e84a1;
    --light-bg: #f8f9fb;
    /**
    * Shadows
  */
    --shadow1: 0 0 15px #dad9d9;
    /**
    * Fonts
  */
    --bs-body-font-family: "Tajawal", sans-serif;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
p {
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.8;
}
p.long-line {
    line-height: 2.1;
}

li {
    list-style: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

input:not([type="checkbox"], [type="radio"]),
textarea,
select {
    display: block;
    width: 100%;
    background: white;
    font: inherit;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 50px;
    transition: transform 0.5s;
}

textarea {
    height: 150px;
    resize: none;
}

select {
    cursor: pointer;
}

[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}
[type="number"]::-webkit-outer-spin-button,
[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="radio"],
input[type="file"] {
    display: none;
}

[type="checkbox"],
[type="checkbox"] + label {
    cursor: pointer;
}

.incoming-call-overlay {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    z-index: 2000;
    display: none;
}
.incoming-call-overlay.show {
    display: block;
}
.incoming-call-overlay .incoming-call-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: var(--dark);
}
.incoming-call-overlay .incoming-call-container .caller-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.incoming-call-overlay .incoming-call-container .call-imgs:hover {
    opacity: 0.8;
}
.incoming-call-overlay .incoming-call-container p {
    font-size: 2rem;
    color: #fff;
}

body {
    overflow-x: hidden;
    background: #1c1a1f;
    color: #fff;
    /**
   * AR Styles ==>
  */
}
body.ar * {
    direction: rtl;
}
body.ar .arrow {
    transform: rotate(0deg);
}
body.ar .category-box input[type="checkbox"]::before {
    right: 0;
}
body.ar .category-box input[type="checkbox"]::after {
    right: 2px;
}
body.ar
    .services-section
    .row
    > div:not(:last-child)
    .service-box
    .icon::after {
    transform: translateY(-50%) rotate(0);
    right: auto;
    left: -60px;
}
body.ar .auth-form .mask {
    left: auto;
    right: -195px;
}
body.ar .auth-page .auth-form .form-group .toggle-password {
    right: auto;
    left: 0;
    margin: 0px 15px;
}
body.ar .filter-col {
    right: auto;
    left: -375px;
}
body.ar .filter-col.opened {
    left: 0;
}
body.ar .club-card .card-body .countries-list .extra-countries {
    right: 0;
    left: auto;
}
body.ar .company-card .verification {
    left: auto;
    right: 15px;
}
body.ar .company-card .favorite {
    left: 15px;
    right: auto;
}
body.ar #about-company .container > .row .search-bar form button {
    right: auto;
    left: 15px;
}
body.ar #about-company .container > .row .tabbar ul li::after {
    left: auto;
    right: 0;
}
body.ar .service-modal .close-modal {
    left: 20px;
    right: auto;
}
@media (max-width: 576px) {
    body.ar .service-modal .close-modal {
        left: -9px;
    }
}
body.ar .navbar-box.dashboard-header .actions .profile-links .message .count,
body.ar
    .navbar-box.dashboard-header
    .actions
    .profile-links
    .notifications
    .count {
    left: -9px;
    right: auto;
}
body.ar .page-head .edit-poster {
    right: auto;
    left: 10px;
}
body
    .auth-page
    .auth-form
    .form-group
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    left: 0;
    right: auto;
}
body .filter-col .filter-box .check-list .main-check::after {
    left: 0;
    right: auto;
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
#fr-logo {
    display: none;
}

.fa-star {
    color: #707070;
}
.fa-star.full {
    color: #ffbe5b;
}

.h-p {
    padding-top: 145px;
}
@media (max-width: 1199px) {
    .h-p {
        padding-top: 132px;
    }
}

.ltr {
    direction: ltr !important;
}

.text-justify {
    text-align: justify;
}

.yellow-text {
    color: var(--yellow);
}

.yellow-bg {
    background-color: var(--yellow);
}

.yellow-btn {
    background-color: var(--yellow) !important;
    color: #303030 !important;
    border: 1px solid var(--yellow) !important;
    font-weight: 600 !important;
    transition: 0.3s;
    padding: 5px 7.5px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.yellow-btn.main-btn {
    padding: 10px 15px;
    font-weight: 300 !important;
    font-size: 1.25rem;
}
.main-btn-dark {
    padding: 10px 15px;
    font-weight: 300 !important;
    font-size: 1.25rem;
    color: #fff;
    background: #1c1a1f !important;
    font-weight: 300 !important;
    transition: 0.3s;
    padding: 5px 7.5px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    top: 100px;
    z-index: 2;
}

.yellow-btn.rounded-half-right {
    border-radius: 0 15px 0 15px;
}
.yellow-btn.rounded-half-left {
    border-radius: 15px 0 15px 0;
}

.yellow-btn-outline {
    background-color: #d9d9d9 !important;
    color: #303030;
    border: none;
    font-weight: 600 !important;
    padding: 5px 7.5px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}
/* .yellow-btn-outline:hover {
    background-color: var(--yellow) !important;
    color: white !important;
} */

.light-text {
    color: var(--light);
}

.light-bg {
    background-color: var(--light);
}

.light-btn {
    background-color: var(--light) !important;
    color: white !important;
    border: 1px solid var(--light) !important;
    font-weight: 600 !important;
    transition: 0.3s;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.light-btn:hover {
    background-color: white !important;
    color: var(--light) !important;
}
.light-btn.rounded-half-right {
    border-radius: 0 15px 0 15px;
}
.light-btn.rounded-half-left {
    border-radius: 15px 0 15px 0;
}

.light-btn-outline {
    background-color: white !important;
    color: var(--light) !important;
    border: 1px solid var(--light) !important;
    font-weight: 600 !important;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.light-btn-outline:hover {
    background-color: var(--light) !important;
    color: white !important;
}

.dark-text {
    color: var(--dark);
}

.dark-bg {
    background-color: #080808;
}

.dark-btn {
    background-color: var(--dark) !important;
    color: white !important;
    border: 1px solid var(--dark) !important;
    font-weight: 600 !important;
    transition: 0.3s;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.dark-btn:hover {
    background-color: white !important;
    color: var(--dark) !important;
}
.dark-btn.rounded-half-right {
    border-radius: 0 15px 0 15px;
}
.dark-btn.rounded-half-left {
    border-radius: 15px 0 15px 0;
}

.dark-btn-outline {
    background-color: white !important;
    color: var(--dark) !important;
    border: 1px solid var(--dark) !important;
    font-weight: 600 !important;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.dark-btn-outline:hover {
    background-color: var(--dark) !important;
    color: white !important;
}

.slate-text {
    color: var(--slate);
}

.slate-bg {
    background-color: var(--slate);
}

.slate-btn {
    background-color: var(--slate) !important;
    color: white !important;
    border: 1px solid var(--slate) !important;
    font-weight: 600 !important;
    transition: 0.3s;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.slate-btn:hover {
    background-color: white !important;
    color: var(--slate) !important;
}
.slate-btn.rounded-half-right {
    border-radius: 0 15px 0 15px;
}
.slate-btn.rounded-half-left {
    border-radius: 15px 0 15px 0;
}

.slate-btn-outline {
    background-color: white !important;
    color: var(--slate) !important;
    border: 1px solid var(--slate) !important;
    font-weight: 600 !important;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.slate-btn-outline:hover {
    background-color: var(--slate) !important;
    color: white !important;
}

.light-bg-text {
    color: var(--light-bg);
}

.light-bg-bg {
    background-color: var(--light-bg);
}

.light-bg-btn {
    background-color: var(--light-bg) !important;
    color: white !important;
    border: 1px solid var(--light-bg) !important;
    font-weight: 600 !important;
    transition: 0.3s;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.light-bg-btn:hover {
    background-color: white !important;
    color: var(--light-bg) !important;
}
.light-bg-btn.rounded-half-right {
    border-radius: 0 15px 0 15px;
}
.light-bg-btn.rounded-half-left {
    border-radius: 15px 0 15px 0;
}

.light-bg-btn-outline {
    background-color: white !important;
    color: var(--light-bg) !important;
    border: 1px solid var(--light-bg) !important;
    font-weight: 600 !important;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.light-bg-btn-outline:hover {
    background-color: var(--light-bg) !important;
    color: white !important;
}

[aria-label="breadcrumb"] {
    background-color: #080808;
    padding: 10px 20px;
    margin: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
}
[aria-label="breadcrumb"] .breadcrumb {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    [aria-label="breadcrumb"] .breadcrumb {
        margin-inline-start: 44px;
    }
}

.row {
    margin-inline: 0;
}

.form-check:not(.radio) {
    padding-right: 2em;
}
.form-check:not(.radio) .form-check-input {
    width: 1.4em;
    height: 1.4em;
    margin-top: 0.1em;
    margin-right: -2em;
}
.form-check:not(.radio) .form-check-input:checked {
    background-color: var(--yellow);
    border-color: var(--yellow);
}
.form-check:not(.radio) .form-check-input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(255, 201, 1, 0.2) !important;
}

.page-head {
    position: relative;
    padding-block: 3rem;
    margin-bottom: 2rem;
}
.page-head::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    opacity: 0.4;
    z-index: 2;
    display: block;
}
.page-head .poster > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}
.page-head .edit-poster {
    position: absolute;
    bottom: 10px;
    right: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    z-index: 10;
    cursor: pointer;
}
.page-head .edit-poster label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 9px;
}
.page-head .edit-poster label img {
    width: 10px;
}
.page-head .title {
    position: relative;
    z-index: 5;
}
.page-head .title h1 {
    color: white;
}
.page-head .title h2 {
    color: #54e9af;
}

.custom-pagination {
    display: flex;
    justify-content: center;
}

.custom-pagination img {
    width: 70px;
    height: 70px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.pagination .page-link {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    border-radius: 50% !important;
    color: var(--dark);
    font-size: 18px;
    transition: 0.4s;
}
.pagination .page-link.active,
.pagination .page-link:hover {
    background-color: var(--yellow);
    color: white;
    border-color: var(--yellow);
}

.modal.show .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 0;
    max-width: 550px;
    background: #080808;
}

.main-title {
    margin-bottom: 55px;
    text-align: center;
}
.main-title h2 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
.main-title h2::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: var(--yellow);
    border-radius: 10px;
}

.select2 {
    width: 100% !important;
}

input.select2-search__field {
    height: auto;
    outline: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--slate);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #31373d;
}

/*-----------------------------------*\
  # Sections ==>
\*-----------------------------------*/
/**
   * Navbar Styles ==>
*/
.navbar-box {
    background-color: #1c1a1f;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1200;
}
.navbar-box.front {
    background-color: transparent;
    position: fixed;
}
.navbar-box.front .background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
@media (max-width: 1199px) {
    .navbar-box.front .background {
        height: calc(100% + 42px);
    }
}
.navbar-box .navbar {
    width: 75%;
    margin-inline: auto;
    padding: 5px 10px;
}
.navbar-box .navbar .navbar-nav {
    background-color: none;
}
@media (max-width: 1199px) {
    .navbar-box .navbar .navbar-nav {
        width: 100%;
        background: none;
    }
}
.navbar-box .navbar {
    background: #313131;
    margin: 20px auto;
    border-radius: 25px;
}
.navbar-box .navbar .navbar-nav * {
    font-weight: bold;
}
.navbar-box .navbar .navbar-nav a {
    color: #fff;
}
.navbar-box .navbar .navbar-nav a:is(:hover, .active) {
    color: #f1d089;
}
.navbar-box .navbar-brand {
    margin-inline-end: 30px;
}
.navbar-box form .form-control {
    border-color: var(--dark);
    border-radius: 0 10px 10px 0;
    border-width: 0.4px;
}
.navbar-box form .form-control:focus {
    box-shadow: 0 0 0 2px rgba(255, 201, 1, 0.2) !important;
}
.navbar-box form .btn {
    background-color: var(--yellow);
    color: white;
    border: 1px solid var(--yellow);
    border-radius: 10px 0 0 10px;
    border-inline-start: none;
}
.navbar-box .actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .navbar-box .actions {
        justify-content: center;
    }
}
.navbar-box .actions form {
    flex-grow: 1;
}
.navbar-box .actions .user-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: end;
}
.navbar-box .actions .user-box .profile-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
.navbar-box .actions .user-box .profile-box .user-av img {
    border-radius: 15px;
    width: 45px;
}
.navbar-box .actions .user-box .dropdown ul {
    min-width: 50px;
    padding: 0;
}
.navbar-box .actions .user-box .dropdown .btn {
    background-color: #080808;
    color: var(--dark);
    border-radius: 50%;
    overflow: hidden;
    border: none;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
}
.navbar-box .actions .user-box .dropdown .btn img.avatar {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.navbar-box .actions .user-box .dropdown .btn::after {
    display: none;
}
.navbar-box .actions .user-box .dropdown .btn:hover {
    color: inherit;
    /* background-color: transparent; */
}
.navbar-box .actions .user-box .dropdown.countries span {
    width: 30px;
    height: 25px;
}

.navbar-box .actions .user-box .languages {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 2.5px 0px;
}
.navbar-box .actions .user-box .languages a {
    color: #fff;
    padding: 2.5px 15px;
}
.active-language {
    background: #5a5a5a;
    border-radius: 25px;
}
.navbar-box .actions .user-box .dropdown .dropdown-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.navbar-box .actions .user-box .dropdown .dropdown-item:is(.active, :active) {
    color: var(--dark);
    background-color: #eee;
}
.navbar-box .actions .user-box .dropdown .dropdown-item img {
    width: 30px;
    height: 25px;
}
.navbar-box .actions .user-box .profile-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.navbar-box .actions .user-box .profile-links .action-icon {
    background-color: white;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-content: center;
    position: relative;
    transition: 0.3s;
}
.navbar-box .actions .user-box .profile-links .action-icon svg path {
    transition: 0.3s;
}
.navbar-box .actions .user-box .profile-links .action-icon span {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 22px;
    height: 22px;
    background: var(--yellow);
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    color: white;
    font-weight: bold;
    font-size: 85%;
}
.navbar-box .actions .user-box .profile-links .action-icon:hover path {
    fill: var(--dark);
}
.navbar-box .actions .user-box .join-us a {
    font-size: 12px;
    font-weight: bold;
    border: 1px solid;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    color: var(--yellow);
}
@media (max-width: 575px) {
    .navbar-box .actions form {
        width: 100%;
    }
}

/**
   * Header Styles ==>
*/
.sections-list {
    color: var(--dark);
    font-weight: 500;
    overflow-x: auto;
    margin-inline: auto;
    cursor: grab;
}
.sections-list::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}
.sections-list ul {
    display: flex;
    justify-content: start;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
}
@media (min-width: 1200px) {
    .sections-list ul {
        gap: 0.75rem;
    }
}
@media (min-width: 1250px) {
    .sections-list ul {
        gap: 1.5rem;
    }
}
@media (min-width: 1350px) {
    .sections-list ul {
        gap: 3rem;
    }
}
.sections-list ul li {
    flex-shrink: 0;
    transition: 0.15s;
}
.sections-list ul li a {
    display: inline-block;
}
.sections-list ul li:is(:hover, .active) {
    color: var(--yellow);
}

header .sections-list {
    max-width: 95%;
}
header .sections-list ul {
    gap: 20px;
}
header.main-category-list {
    background-color: var(--light);
    padding-block: 8px;
    border-block: 1px solid var(--yellow);
}
header.main-category-list.front {
    background-color: transparent;
}
@media (max-width: 1199px) {
    header.main-category-list {
        position: sticky;
        top: 92px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
}
header.main-category-list .sections-list::-webkit-scrollbar {
    display: none;
}

/**
   * Footer Styles ==>
*/
footer {
    background-color: #1c1a1f;
}

footer .content {
    background: #080808;
    padding: 25px;
    border-radius: 25px;
}

footer .foo-head .info-box {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
footer .foo-head .info-box .info-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-inline: auto;
    display: grid;
    place-content: center;
    color: var(--yellow);
    font-size: 23px;
    margin-bottom: 20px;
    transition: 0.3s;
}
footer .foo-head .info-box h6 {
    font-size: 15px;
}
footer .foo-head .info-box:hover .info-icon {
    background-color: var(--yellow);
    color: white;
}
footer .foo-box .foo-logo + p {
    font-size: 12px;
}
footer .social-list li a {
    background-color: transparent;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    font-size: 2rem;
    transition: 0.3s;
}
footer .foo-box input {
    height: 40px;
    width: auto;
}
footer .foo-box [type="email"] {
    background-color: white;
    border-radius: 0 100px 100px 0;
    border-inline-end: none;
    flex-shrink: 0;
    flex-grow: 2;
    box-shadow: none;
}
footer .foo-box [type="submit"] {
    background-color: white;
    border-radius: 100px 0px 0px 100px;
    border-inline-end: none;
    flex-shrink: 0;
    flex-grow: 2;
    box-shadow: none;
}

/**
   * About Section Styles ==>
*/
.light-font {
    font-weight: 300 !important;
}

.fs-title {
    font-size: 3rem;
}

#market-calculus-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .about-section .col-lg-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-section .img-1 {
        align-self: flex-start;
        margin-bottom: 2rem;
    }

    .about-section .img-2 {
        align-self: flex-end;
        margin-bottom: 2rem;
    }
}

.about-section .statistics {
    background-color: #ead99f;
}

.about-section .statistics .statistic-box h2 {
    color: #113c61;
}

/**
   * Services Section Styles ==>
*/
.services-section .service-box {
    background-color: #242227;
    color: #fff;
    border-radius: 15px;
    height: 25rem;
    width: 25rem;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.services-section .service-box .service {
    background-color: #333136;
    padding: 5px;
    height: 23rem;
    width: 23rem;
    border-radius: 15px;
}

.service-title {
    color: #fff;
    width: 70%;
    border-radius: 25px;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .services-section .service-box {
        height: 20rem;
        width: 20rem;
        margin: 0 auto;
        font-size: 0.7rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-section .service-box {
        height: 15rem;
        width: 15rem;
        margin: 0 auto;
        font-size: 0.5rem;
    }
}

/**
   * Filter Col Styles ==>
*/
#filter-col {
    max-width: 400px;
}

.filter-col {
    padding: 25px 15px;

    border-radius: 7.5px;
    position: sticky;
    top: 130px;
    background-color: #080808;
}
.filter-col .head {
    color: var(--slate);
}
.filter-col .head,
.filter-col .filter-box {
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ebebeb;
}
.filter-col .filter-box h5 {
    margin-bottom: 10px;
}
.filter-col .filter-box .select2 {
    width: 100% !important;
}
.filter-col .filter-box .select2-container .select2-selection--single {
    height: 45px;
    display: flex;
    align-items: center;
}
.filter-col .filter-box .select2-dropdown,
.filter-col
    .filter-box
    .select2-container--default
    .select2-search--dropdown
    .select2-search__field,
.filter-col .filter-box .select2-container .select2-selection--single {
    border-color: #ebebeb;
}
.filter-col
    .filter-box
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100%;
}
.filter-col .filter-box .form-check input:checked + label {
    color: var(--yellow);
}
.filter-col .filter-box .form-check label {
    width: 100%;
    transition: 0.3s;
}
.filter-col .filter-box .check-list .main-check {
    position: relative;
}
.filter-col .filter-box .check-list .main-check::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: #777;
    transition: 0.9s;
}
.filter-col .filter-box .check-list .other-checks {
    display: none;
    padding-inline-start: 22px;
    margin-top: 7px;
}
.filter-col .filter-box .check-list.opened .main-check::after {
    transform: translateY(-50%) rotateX(-180deg);
}
@media (max-width: 991px) {
    .filter-col {
        border-radius: 0;
        position: absolute;
        top: 0px;
        right: -375px;
        width: 375px;
        z-index: 1200;
        transition: 0.5s;
        height: calc(100vh - 134px);
        overflow: auto;
    }
    .filter-col::-webkit-scrollbar {
        display: none;
    }
    .filter-col.opened {
        right: 0;
    }
}

/**
   * Optbar ==>
*/
.optbar .filter-btn {
    border: 1px solid;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    transition: 0.4s;
    color: var(--slate);
    cursor: pointer;
    flex-shrink: 0;
}
.optbar .filter-btn.active,
.optbar .filter-btn:hover {
    color: var(--yellow);
}
.optbar .dropdown ul {
    min-width: 100%;
    padding: 0;
}
@media (max-width: 474px) {
    .optbar .show-style {
        display: none !important;
    }
}
.optbar .show-style button {
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    transition: border-color 0.4s;
    cursor: pointer;
}
.optbar .show-style button rect {
    transition: 0.4s;
}
.optbar .show-style button.active,
.optbar .show-style button:hover {
    border-color: var(--yellow);
}
.optbar .show-style button.active rect,
.optbar .show-style button:hover rect {
    fill: var(--yellow);
}

/**
   * Club Card ==>
*/
.club-card {
    border-radius: 8px;
    padding: 20px;
    transition: 0.5s;
    background-color: #080808;
}
.club-card .card-head {
    margin-bottom: 12px;
}
.club-card .card-head .info .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 1.5px;
    border: 1px solid var(--yellow);
    position: relative;
}
.club-card .card-head .info .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: contain;
    object-fit: contain;
}
.club-card .card-head .info .avatar .dot {
    position: absolute;
    top: 0px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid white;
    background-color: var(--yellow);
}
.club-card .card-head .info .avatar .dot.online {
    background-color: #00ff00;
}
.club-card .card-head .info .avatar .dot.offline {
    background-color: #ff0000;
}
.club-card .card-head .info .name h6 {
    font-size: 18px;
}
.club-card .card-head .info .name p {
    font-size: 14px;
    line-height: 1.4;
}
.club-card .card-head .info.blur .name {
    filter: blur(4px);
}
.club-card .card-head .info.blur .avatar img {
    filter: blur(4px);
}
.club-card .title h6 {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 50px;
    line-height: 23px;
    font-size: 18px;
    margin-bottom: 15px;
}
.club-card .card-body {
    display: flex;
    flex-direction: column;
}
.club-card .card-body .countries-list {
    display: flex;
    position: relative;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
}
.club-card .card-body .countries-list .country {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
}
.club-card .card-body .countries-list .country:nth-child(1) {
    z-index: 3;
}
.club-card .card-body .countries-list .country:nth-child(2) {
    z-index: 2;
}
.club-card .card-body .countries-list .country:nth-child(3) {
    z-index: 1;
}
.club-card .card-body .countries-list .country:not(:first-child) {
    margin-inline-start: -25px;
}
.club-card .card-body .countries-list .extra {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(94, 132, 161, 0.7294117647);
    z-index: 10;
    color: white;
    display: grid;
    place-content: center;
    font-size: 18px;
    font-weight: bold;
}
.club-card .card-body .countries-list .extra-countries {
    position: absolute;
    top: 45px;
    left: 0;
    background: white;
    padding: 0;
    box-shadow: 0 0 5px #ccc;
    border-radius: 10px;
    width: 225px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    z-index: 100;
}
.club-card .card-body .countries-list .extra-countries::-webkit-scrollbar {
    width: 5px;
}
.club-card .card-body .countries-list .extra-countries .extra-country {
    display: flex;
    gap: 7px;
    align-items: center;
}
.club-card
    .card-body
    .countries-list
    .extra-countries
    .extra-country:not(:last-child) {
    margin-bottom: 7px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
    padding-bottom: 7px;
}
.club-card .card-body .countries-list .extra-countries .extra-country img {
    width: 30px;
    border-radius: 50%;
}
.club-card .card-body .countries-list:hover .extra-countries {
    opacity: 1;
    padding: 5px 10px;
    max-height: 150px;
    overflow: auto;
}
.club-card .card-body .dropdown {
    margin-bottom: 10px;
}
.club-card .card-body .dropdown button {
    background-color: transparent;
    border: none;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
}
.club-card .card-body .dropdown button:hover {
    color: var(--yellow);
}
.club-card .card-body .dropdown button::after {
    display: none;
}
.club-card .card-body .card-foo {
    font-size: 14px;
}
.club-card:hover {
    transform: scale(1.03);
    position: relative;
    z-index: 15;
}

@media (min-width: 475px) {
    .list-style {
        width: 100%;
    }
    .list-style .club-card .card-body {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .list-style .club-card .card-body .card-foo {
        flex-direction: column-reverse;
        align-items: end !important;
    }
}
/**
   * Service Card ==>
*/
.service-card {
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    background-color: white;
}
.service-card .service-img {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    margin-inline: auto;
    margin-bottom: 20px;
    overflow: hidden;
}
.service-card .service-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-card .service-info .service-title {
    font-size: 18px;
    margin-bottom: 0px;
}
.service-card .service-info .service-desc {
    height: 65px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
.service-card .actions {
    font-size: 12px;
}

/**
   * Company Card ==>
*/
.company-card {
    border-radius: 8px;
    background-color: #080808;
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    height: 28rem;
}

@media (max-width: 576px) {
    .company-card {
        height: 35rem;
    }
}

.company-card .verification {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
}
.company-card .verification img {
    max-width: 100%;
}
.company-card .favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    font-size: 22px;
    color: #dee5ed;
    cursor: pointer;
}
.company-card .favorite.active {
    color: var(--yellow);
}
.company-card .card-head {
    text-align: center;
    margin-top: 25px;
}
.company-card .card-head .company-logo {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline: auto;
    margin-bottom: 17px;
}
.company-card .card-head .company-logo img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}
.company-card .card-body .chat-now {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
/**
   * Countries List Box ==>
*/
.countries-list-box {
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #080808;
}
.countries-list-box .box-head {
    padding: 15px;
}
.countries-list-box .new-countries {
    padding: 10px 15px;
    background-color: #fafbfd;
    border-block: 1px solid #e6e6e6;
}
.countries-list-box .earth-icon {
    width: 40px;
}
.countries-list-box .earth-icon img {
    width: 100%;
}
.countries-list-box .countries-list {
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.countries-list-box .countries-list .country-box {
    padding: 3px 15px;
    border-radius: 5px;
    border: 1px solid var(--yellow);
    text-align: center;
    transition: 0.4s;
}
.countries-list-box .countries-list .country-box:hover {
    background-color: var(--yellow);
    color: white;
}

/**
   * Contact Info Box ==>
*/
.contact-info-box {
    border-radius: 10px;
    padding: 15px;
    background-color: #080808;
    height: 28rem;
}
.contact-info-box .contact-head p {
    font-size: 14px;
}
.contact-info-box .contact-list {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.contact-info-box .contact-list .contact-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

/**
   * Service Modal ==>
*/
.service-modal {
    padding: 25px 10px;
    border-radius: 15px;
    position: relative;
    background-color: white;
    width: 95%;
    max-width: 1100px;
    max-height: 95vh;
    overflow: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    display: none;
}
.service-modal::-webkit-scrollbar {
    display: none;
}
.service-modal .row > div {
    padding-inline: 10px;
}
.service-modal .row > div:first-child {
    max-width: 520px;
}
.service-modal .close-modal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #dee5ed;
    display: grid;
    place-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--slate);
    font-size: 27px;
    cursor: pointer;
}
@media (max-width: 576px) {
    .service-modal .close-modal {
        top: -9px;
        right: -9px;
    }
}
.service-modal .imgs-box .current-img {
    width: 500px;
    height: 500px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 576px) {
    .service-modal .imgs-box .current-img {
        height: 400px;
    }
}
@media (max-width: 400px) {
    .service-modal .imgs-box .current-img {
        height: 300px;
    }
}
.service-modal .imgs-box .current-img img {
    border-radius: 20px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.service-modal .imgs-box .imgs-list {
    display: flex;
    gap: 10px;
    padding-block: 5px;
    overflow: auto;
    max-width: 500px;
}
.service-modal .imgs-box .imgs-list::-webkit-scrollbar {
    display: none;
}
.service-modal .imgs-box .imgs-list .sub-img {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 10px;
}
.service-modal .imgs-box .imgs-list .sub-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-modal .imgs-box .imgs-list .sub-video {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 10px;
}
.service-modal .info-box p {
    font-size: 24px;
}

#home main {
    /* background: linear-gradient(rgba(30, 30, 30, 0.4), rgba(30, 30, 30, 0.4)),
        url("/client/imgs/world.png") center center / cover no-repeat; */
    min-height: 35rem;
}
#home main .main-text {
    /* text-align: center; */
    color: #fff;
}

#home main .main-text p {
    font-size: 1.5em;
}

@media (max-width: 991px) {
    #home main .main-text {
        text-align: center;
        margin-inline: auto;
    }
}
#home main .video-box {
    position: relative;
    border: 3px solid var(--yellow);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    place-content: center;
    height: 250px;
}
#home main .video-box .poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#home main .video-box .poster img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#home main .helpful-link-list .helpful-link-box {
    position: relative;
    border: 3px solid transparent;
    border-radius: 30px;
    overflow: hidden;
    height: 190px;
    transition: 0.3s;
}
#home main .helpful-link-list .helpful-link-box .link-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#home main .helpful-link-list .helpful-link-box .link-background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}
#home main .helpful-link-list .helpful-link-box .link-background::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    background: linear-gradient(
        90deg,
        rgba(113, 113, 113, 0.568627451),
        rgba(0, 0, 0, 0.568627451)
    );
}
#home main .helpful-link-list .helpful-link-box .info {
    position: relative;
    padding: 20px;
    top: calc(100% - 65px);
    transition: 0.3s;
}
#home main .helpful-link-list .helpful-link-box .info p {
    height: 55px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
#home main .helpful-link-list .helpful-link-box:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#home main .helpful-link-list .helpful-link-box:hover .info {
    top: 50%;
    transform: translateY(-50%);
}
#home main .helpful-link-list .helpful-link-box:hover .info h4 {
    color: var(--yellow);
}
#home .features .join-promo {
    position: relative;
    background: url("../imgs/features.png") center center / cover no-repeat;
    height: 400px;
    border-radius: 25px;
}
#home .features .join-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f1d089; /* The overlay color */
    opacity: 0.6; /* Adjust opacity to control the intensity of the overlay */
    z-index: 1; /* Makes sure the overlay appears on top of the background */
    border-radius: 25px;
}
#home .features .join-promo > *:not(a) {
    position: relative;
    top: 100px;
    z-index: 2; /* Ensures any content inside the div appears above the overlay */
    color: #1c1a1f !important;
}

#home .features .join-promo p {
    font-size: 2rem;
    font-weight: 300;
}

#home .features .feature-box {
    padding: 10px;
    max-width: 255px;
    margin-inline: auto;
}

#home .features .feature-box .feature-img img {
    width: 100%;
}
#home .features .feature-box h5 {
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 25px;
}
#home .features .feature-box p {
    height: 70px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #707070;
}
#home .testimonials {
    background-color: #1c1a1f; /* Set the background color */
    /* Set the SVG as the background image */
    background-position: 50% 90%; /* Position the background image */
    background-size: 1100px; /* Size of the background image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    height: 500px; /* Set a height for the container */
    width: 100%; /* Set width as needed */
}
@media (max-width: 1100px) {
    #home .testimonials {
        background-size: contain;
    }
}
@media (max-width: 576px) {
    #home .testimonials {
        background: none;
    }
}
#home .testimonials .title p {
    max-width: 700px;
    margin-inline: auto;
}
#home .testimonials .testimonial-box {
    background: #f6f8f9;
    padding: 60px 15px;
    text-align: center;
    margin: 20px;
    max-width: 75%;
    border-radius: 5px;
    position: relative;
}
@media (min-width: 1220px) {
    #home .testimonials .testimonial-box {
        margin-inline: auto;
    }
}

#home .testimonials .testimonial-box .text {
    max-width: 800px;
    margin-inline: auto;
}
#home .testimonials .avatar-list .avatar-box {
    text-align: center;
    cursor: pointer;
}
#home .testimonials .avatar-list .avatar-box .avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-inline: auto;
    overflow: hidden;
    margin-bottom: 10px;
    transition: 0.3s;
}
#home .testimonials .avatar-list .avatar-box .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#home .testimonials .avatar-list .avatar-box .info {
    width: 0;
    height: 0;
    transition: 0.3s;
    opacity: 0;
    overflow: hidden;
}
#home .testimonials .avatar-list .avatar-box .info.center {
    width: auto;
    height: auto;
    opacity: 1;
}
#home .testimonials .avatar-list .slick-center .avatar {
    width: 100px;
    height: 100px;
    padding: 3px;
    background-color: white;
    border: 2px solid var(--yellow);
}
#home .testimonials .avatar-list .slick-center .info {
    width: auto;
    height: auto;
    opacity: 1;
}
#home .testimonials .slick-arrow {
    background: var(--yellow);
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    background-color: white;
    border: 1px solid var(--yellow);
}
#home .testimonials .slick-arrow::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--yellow);
    font-size: 16px;
}
#home .testimonials [dir="rtl"] .slick-prev {
    right: 6%;
    left: auto;
}
@media (max-width: 1400px) {
    #home .testimonials [dir="rtl"] .slick-prev {
        right: -1%;
    }
}
@media (max-width: 1220px) {
    #home .testimonials [dir="rtl"] .slick-prev {
        right: 0%;
    }
}
#home .testimonials [dir="rtl"] .slick-prev::before {
    content: "\f061";
}
#home .testimonials [dir="rtl"] .slick-next {
    right: auto;
    left: 6%;
}
@media (max-width: 1400px) {
    #home .testimonials [dir="rtl"] .slick-next {
        left: -1%;
    }
}
@media (max-width: 1220px) {
    #home .testimonials [dir="rtl"] .slick-next {
        left: 0%;
    }
}
#home .testimonials [dir="rtl"] .slick-next::before {
    content: "\f060";
}

#about-us .features {
    background: #1c1a1f;
}
#about-us .features .feature-box {
    margin-inline: auto;
    transition: 0.3s;
    text-align: center;
}
#about-us .features .feature-box:hover {
    box-shadow: none;
}

#about-us .features .feature-box img {
    width: 100%;
    border-radius: 5px;
    object-size: cover;
}
#about-us .features .feature-box h5 {
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 25px;
}
#about-us .features .feature-box p {
    height: 55px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #707070;
}
@media (max-width: 575px) {
    #about-us .features .feature-box {
        text-align: center;
    }
    #about-us .features .feature-box .feature-img {
        margin-inline: auto;
    }
}
#about-us .FAQ {
    background-color: #1c1a1f;
}
#about-us .FAQ .faq-content {
    width: 700px;
    max-width: 95%;
    margin-inline: auto;
}
#about-us .FAQ .faq-content .faq-list::-webkit-scrollbar {
    display: none;
}
#about-us .FAQ .faq-content .faq-list .faq-box {
    background-color: #f1d089;
    color: #1c1a1f;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
#about-us .FAQ .faq-content .faq-list .faq-box:not(:last-child) {
    margin-bottom: 25px;
}
#about-us .FAQ .faq-content .faq-list .faq-box .question {
    display: flex;
    align-items: center;
    cursor: pointer;
}
#about-us .FAQ .faq-content .faq-list .faq-box .question h5 {
    font-size: 18px;
    margin-bottom: 0;
    transition: 0.3s;
}
#about-us .FAQ .faq-content .faq-list .faq-box .question .icon {
    /* color: var(--yellow); */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-content: center;
    margin-inline-start: auto;
    flex-shrink: 0;
    transition: background 0.3s;
}
#about-us .FAQ .faq-content .faq-list .faq-box .question .icon svg {
    transition: 0.3s;
}
#about-us .FAQ .faq-content .faq-list .faq-box .answer {
    margin-top: 15px;
    display: none;
}

#about-us .FAQ .faq-content .faq-list .faq-box.opened .icon svg {
    transform: rotateX(-180deg);
}
#about-us .FAQ .faq-img {
    height: 400px;
    width: 70%;
    position: relative;
    background: url("../imgs/about-us.jpeg") center center / cover no-repeat;
}

@media (max-width: 576px) {
    #about-us .FAQ .faq-img {
        width: 100%;
    }
}

#about-us .FAQ .faq-img img {
    width: 100%;
    height: 100%;
    /* -o-object-fit: cover;
    object-fit: cover; */
}
#about-us .FAQ .faq-img .play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    transition: 0.3s;
}
#about-us .FAQ .faq-img .play-video:hover {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
}

#help .social-box {
    height: 400px;
    padding: 25px;
    background: #080808;
    color: #fff;
}

#help .social-links {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 750px;
    padding-top: 20px;
}
#help .social-links a {
    display: grid;
    place-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    background-color: rgba(255, 201, 1, 0.3);
    color: var(--yellow);
    border-radius: 50%;
    transition: 0.3s;
}
#help .social-links a:hover {
    background-color: var(--yellow);
    color: white;
}

#help .contact-form .contact-title h2 {
    font-weight: 500;
}
#help .contact-form .contact-title p {
    max-width: 600px;
    margin-inline: auto;
}
#help .contact-form form {
    max-width: 1000px;
    margin-inline: auto;
    background: #080808;
    padding: 15px;
    border-radius: 25px;
}
#help .contact-form form .form-group {
    margin-bottom: 15px;
}
#help .contact-form form .form-group input,
#help .contact-form form .form-group textarea {
    width: 100%;
    outline: none;
    border-radius: 0;
    height: 50px;
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
}
#help .contact-form form .form-group textarea {
    height: 150px;
}
#help .contact-form form .form-group label {
    margin-bottom: 10px;
}

.auth-page > .row > div {
    min-height: 100vh;
}
.auth-page .float-map {
    background: url("../imgs/world-map.svg") 50% 50% / contain no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -2;
}
.auth-page .auth-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("../imgs/auth-bg.png") 100% 50% / cover no-repeat;
    height: 100%;
    position: relative;
}
.auth-page .auth-bg .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.auth-page .auth-form {
    width: 50%;
    max-width: 95%;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .auth-page .auth-form {
        width: 100%;
    }
}

.auth-page .auth-form .mask {
    position: absolute;
    bottom: 0;
    left: -195px;
    height: calc(100% - 100px);
    max-height: 650px;
    z-index: -1;
}
.auth-page .auth-form .mask img {
    height: 100%;
}
.auth-page .auth-form .clubs-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.auth-page .auth-form .clubs-list li {
    display: grid;
    place-content: center;
}
.auth-page .auth-form .clubs-list li label {
    position: relative !important;
    border-radius: 20px;
    height: 78px;
    font-size: 12px;
    width: 88px;
    overflow: hidden;
    display: grid;
    place-content: center;
    border: 3px solid transparent;
    transition: 0.4s;
}
.auth-page .auth-form .clubs-list li label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000000, #717171);
    opacity: 0.6;
}
.auth-page .auth-form .clubs-list li label:hover {
    cursor: pointer;
}
.auth-page .auth-form .clubs-list li label .club-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.auth-page .auth-form .clubs-list li label span {
    position: relative;
    z-index: 2;
    color: white;
    width: 60px;
    margin-bottom: 0px;
}
.auth-page .auth-form .clubs-list li input:checked + label {
    border-color: var(--yellow);
}
.auth-page .auth-form .clubs-list li input:checked + label span {
    color: var(--yellow);
}
.auth-page .auth-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.auth-page .auth-form .form-group input,
.auth-page .auth-form .form-group select,
.auth-page
    .auth-form
    .form-group
    .select2-container--default
    .select2-selection--single {
    padding: 20px;
    border-radius: 5px;
    background-color: white;
    color: var(--slate);
    border: 1px solid var(--slate);
    height: 50px;
}
.auth-page .auth-form .form-group input:focus,
.auth-page .auth-form .form-group select:focus,
.auth-page
    .auth-form
    .form-group
    .select2-container--default
    .select2-selection--single:focus {
    outline: none;
}
.auth-page
    .auth-form
    .form-group
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding: 0;
}
.auth-page
    .auth-form
    .form-group
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: auto;
    bottom: 0;
    right: 0;
}
.auth-page .auth-form .form-group label {
    position: absolute;
    right: 0;
    top: 0px;
    color: var(--slate);
    z-index: 2;
}
.auth-page .auth-form .form-group .toggle-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin: 0px 15px;
}

body.en .auth-page .auth-form .form-group .toggle-password {
    right: 0;
    left: auto;
}

.copyright {
    background-color: #1c1a1f;
    color: #fff;
}

.auth-page .copyright {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 100%;
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline-start: 190px;
}
@media (max-width: 767px) {
    .auth-page .copyright {
        align-items: center;
        flex-direction: column;
        padding-inline-start: 0px;
    }
}

@media (min-width: 1200px) {
    #looking-for .container {
        max-width: 1140px;
    }
}
#looking-for .categories-list .category-box {
    border: 1px solid #eee;
    overflow: hidden;
    max-width: 300px;
    margin-inline: auto;
    height: 300px;
    transition: 0.3s;
    cursor: pointer;
}
#looking-for .categories-list .category-box .category-bg {
    width: 100%;
    height: 160px;
    padding: 10px;
}
#looking-for .categories-list .category-box .category-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#looking-for .categories-list .category-box .info {
    position: relative;
    padding: 20px;
    transition: 0.3s;
}
#looking-for .categories-list .category-box .info p {
    height: 64px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
#looking-for .categories-list .category-box:hover,
#looking-for .categories-list .category-box.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: #080808;
}
#looking-for .categories-list .category-box:hover .info h6,
#looking-for .categories-list .category-box.active .info h6 {
    color: var(--yellow);
}
#looking-for .categories-slider .item {
    margin: 7.5px;
}
#looking-for .categories-slider .item .category-box {
    margin-inline: auto;
}
#looking-for .categories-slider .item .category-box:hover,
#looking-for .categories-slider .item .category-box.active {
    box-shadow: none;
    transform: scale(1.03);
}
#looking-for .categories-slider .slick-dots {
    bottom: -30px;
}
#looking-for .categories-slider .slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #eff0f1;
    border: 1px solid var(--dark);
}
#looking-for .categories-slider .slick-dots li button:before {
    display: none;
}
#looking-for .categories-slider .slick-dots li.slick-active button {
    background-color: var(--dark);
}
#looking-for .specialization-box {
    display: none;
}
#looking-for .specialization-box.active {
    display: flex;
}
#looking-for .specialization-box ul {
    cursor: grab;
}
#looking-for .specialization-box ul::-webkit-scrollbar {
    display: none;
}
#looking-for .specialization-box ul li .icon {
    background-color: transparent;
    border-radius: 50%;
    color: var(--dark);
    font-size: 28px;
    width: 100px;
    height: 100px;
    display: grid;
    place-content: center;
    margin-inline: auto;
    margin-bottom: 25px;
    transition: 0.4s;
}
#looking-for .specialization-box ul li .icon img {
    width: 60px;
    height: 60px;
}
#looking-for .specialization-box ul li h5 {
    width: 87px;
    height: 55px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
#looking-for .specialization-box ul li:hover .icon {
    background-color: var(--yellow);
    color: white;
}

#looking-resultes .container {
    transition: 1s;
}
@media (max-width: 1199px) and (min-width: 992px) {
    #looking-resultes .container {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    #looking-resultes .container {
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    #looking-resultes .container > .row {
        position: relative;
        overflow: hidden;
    }
}
#looking-resultes .container > .row > div {
    transition: 0.5s;
}
#looking-resultes .modal-content {
    border-radius: 20px;
    text-align: center;
    padding: 30px 50px;
}
#looking-resultes .modal-content .img {
    width: 80px;
    height: 80px;
}
#looking-resultes .modal-content .img img {
    max-width: 100%;
}

#about-company .container {
    padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
    #about-company .container > .row > div:first-child {
        /* max-width: 400px; */
    }
}
#about-company .container > .row .search-bar {
    margin-bottom: 1.5rem;
}
#about-company .container > .row .search-bar form {
    position: relative;
}
@media (min-width: 991px) {
    #about-company .container > .row .search-bar form input {
        max-width: 350px;
        margin-inline-start: auto;
    }
}
#about-company .container > .row .search-bar form button {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.4s;
}
#about-company .container > .row .search-bar form input:focus + button,
#about-company .container > .row .search-bar form button:hover {
    transform: translateY(-50%) rotate(30deg) scale(1.02);
}
#about-company .container > .row .tabbar ul {
    overflow: auto;
    padding-bottom: 2rem;
}
#about-company .container > .row .tabbar ul::-webkit-scrollbar {
    display: none;
}
#about-company .container > .row .tabbar ul li {
    flex-shrink: 0;
    position: relative;
    transition: 0.4s;
}
#about-company .container > .row .tabbar ul li::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0px;
    height: 2px;
    background-color: var(--yellow);
    transition: 0.4s;
}
#about-company .container > .row .tabbar ul li.active,
#about-company .container > .row .tabbar ul li:hover {
    color: var(--yellow);
}
#about-company .container > .row .tabbar ul li.active::after,
#about-company .container > .row .tabbar ul li:hover::after {
    width: 75%;
}
#about-company .container > .row .sections [data-section] {
    padding: 15px;

    margin-bottom: 20px;
    border-radius: 10px;
}
#about-company .container > .row .sections [data-section] .title a {
    font-weight: bolder;
    text-decoration: underline;
}
#about-company .container > .row .add-comment .rate {
    display: flex;
    gap: 15px;
}
#about-company .container > .row .add-comment .rate ul {
    padding: 0;
    display: flex;
    gap: 10px;
    font-size: 18px;
}
#about-company .container > .row .add-comment .rate ul li {
    list-style: none;
    margin-bottom: 0;
}
#about-company .container > .row .add-comment .rate ul li label {
    cursor: pointer;
}
#about-company .container > .row .rate-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}
#about-company .container > .row .rate-card:not(:last-child) {
    margin-bottom: 20px;
}
#about-company .container > .row .rate-card .rate-head .title h5 {
    margin-bottom: 5px;
}
#about-company .container > .row .rate-card .rate-head .title .date {
    color: var(--slate);
}
#about-company .container > .row .rate-card .rate-body p {
    color: var(--slate);
    position: relative;
}
#about-company .container > .row .rate-card .rate-body p::before,
#about-company .container > .row .rate-card .rate-body p::after {
    position: absolute;
    color: #c3d4e9;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
#about-company .container > .row .rate-card .rate-body p::before {
    content: "\f10d";
    left: 0px;
    top: -40px;
}
#about-company .container > .row .rate-card .rate-body p::after {
    content: "\f10e";
    bottom: -40px;
    right: 0px;
}
#about-company .container > .row .rate-card .rate-foo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#about-company .container > .row .rate-card .rate-foo .writer {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
#about-company .container > .row .rate-card .rate-foo .writer .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--yellow);
}
#about-company .container > .row .rate-card .rate-foo .writer .info h5 {
    color: #1e5068;
    margin-bottom: 0px;
}
#about-company .container > .row .rate-card .rate-foo .writer .info p {
    color: #5e84a1;
}
#about-company .container > .row .rate-card .rate-foo .rate {
    display: flex;
    align-items: center;
    gap: 7px;
}
#about-company .container > .row .rate-card .rate-foo .rate p {
    font-weight: bolder;
    color: var(--slate);
}
#about-company .container > .row .rate-card.dark {
    background-color: #384049;
}
#about-company .container > .row .rate-card.dark .rate-head .title h5 {
    color: var(--yellow);
}
#about-company .container > .row .rate-card.dark .rate-head .title .date {
    color: var(--light-bg);
}
#about-company .container > .row .rate-card.dark .rate-body p {
    color: var(--light-bg);
}
#about-company .container > .row .rate-card.dark .rate-body p::before,
#about-company .container > .row .rate-card.dark .rate-body p::after {
    color: var(--yellow);
}
#about-company .container > .row .rate-card.dark .rate-foo .writer .avatar {
    border-color: var(--light-bg);
}
#about-company .container > .row .rate-card.dark .rate-foo .writer .info h5 {
    color: var(--light-bg);
}
#about-company .container > .row .rate-card.dark .rate-foo .writer .info p {
    color: var(--light-bg);
}
#about-company .container > .row .rate-card.dark .rate-foo .rate p {
    color: var(--light-bg);
}
#about-company
    .container
    > .row
    .rate-card.dark
    .rate-foo
    .rate
    .fa-star:not(.full) {
    color: var(--light-bg);
}

@media (min-width: 1200px) {
    #choose-plan .container {
        max-width: 1140px;
    }
}
#choose-plan
    .container
    .subscriptions-list
    .subscription-item:not(:last-child) {
    margin-bottom: 15px;
}
#choose-plan .container .subscriptions-list .subscription-item label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--yellow);
    cursor: pointer;
    padding: 20px 10px;
    padding-inline-start: 30px;
    position: relative;
    transition: 0.3s;
}
#choose-plan .container .subscriptions-list .subscription-item label::after,
#choose-plan .container .subscriptions-list .subscription-item label::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#choose-plan .container .subscriptions-list .subscription-item label::before {
    content: "";
    right: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--dark);
}
#choose-plan .container .subscriptions-list .subscription-item label .price {
    display: flex;
    align-items: center;
    gap: 20px;
}
#choose-plan .container .subscriptions-list .subscription-item label .discount {
    background-color: var(--yellow);
    color: var(--dark);
    font-weight: 600;
    font-size: 75%;
    border-radius: 20px;
    padding-block: 2px;
    width: 85px;
    text-align: center;
}
#choose-plan .container .subscriptions-list .subscription-item label h5 {
    font-weight: 900;
    margin-bottom: 0;
}
#choose-plan .container .subscriptions-list .subscription-item label h5 span {
    font-size: 60%;
    font-weight: 600;
    margin-inline-start: 5px;
}
#choose-plan
    .container
    .subscriptions-list
    .subscription-item
    input:checked
    + label {
    background-color: var(--dark);
    border-color: var(--dark);
    color: white;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.1254901961);
}
#choose-plan
    .container
    .subscriptions-list
    .subscription-item
    input:checked
    + label::before {
    border-color: var(--yellow);
}
#choose-plan
    .container
    .subscriptions-list
    .subscription-item
    input:checked
    + label::after {
    content: "\f00c";
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    color: #4caf50;
    font-size: 70%;
    right: 12px;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box {
    border: 1px solid var(--yellow);
    border-radius: 10px;
    overflow: hidden;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-head {
    background: var(--yellow);
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    color: white;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list {
    padding: 15px 20px;
    display: none;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list.show {
    display: block;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item {
    position: relative;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item::before,
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item::before {
    content: "";
    background-color: #16a085;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 10px;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item::after {
    content: "\f00c";
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    color: #fff;
    font-size: 65%;
    left: 12px;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item:not(:last-child) {
    margin-bottom: 20px;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item.disabel {
    color: #a7a7a7;
}
#choose-plan
    .container
    .subscriptions-feature-list
    .subscription-feature-item
    .feature-box
    .feature-list
    .feature-item.disabel::before {
    background-color: #a7a7a7;
}
#choose-plan .container .choose-plan button {
    box-shadow: 0 15px 16px rgba(12, 36, 97, 0.2156862745);
}

/**
   * General Styles ==>
*/
.navbar-box.dashboard-header .actions .join-us a {
    font-size: 12px;
    font-weight: bold;
    border: 1px solid;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    color: var(--yellow);
}
.navbar-box.dashboard-header .actions .profile-links .message,
.navbar-box.dashboard-header .actions .profile-links .notifications {
    background-color: #5a5a5a;
    transition: 0.3s;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    position: relative;
}

.navbar-box.dashboard-header .actions .profile-links .message .count,
.navbar-box.dashboard-header .actions .profile-links .notifications .count {
    position: absolute;
    width: 18px;
    height: 18px;
    font-weight: bold;
    display: grid;
    place-content: center;
    background-color: var(--yellow);
    color: white;
    border-radius: 50%;
    top: -9px;
    right: -9px;
}
.navbar-box.dashboard-header .actions .notifications .dropdown-menu {
    width: 300px;
}
.navbar-box.dashboard-header .actions .notifications .dropdown-menu.show {
    padding: 15px 10px 10px;
    left: 0;
    right: auto;
}
.navbar-box.dashboard-header .actions .notifications .dropdown-menu .head {
    margin-bottom: 15px;
}
.navbar-box.dashboard-header .actions .notifications .dropdown-menu .head h6 {
    font-size: 18px;
}
.navbar-box.dashboard-header .actions .notifications .dropdown-menu li {
    position: relative;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    li:not(:last-child) {
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    padding-bottom: 5px;
}
.navbar-box.dashboard-header .actions .notifications .dropdown-menu li .dot {
    position: absolute;
    top: 13px;
    right: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: blue;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    li
    .dropdown-item {
    padding: 10px 20px;
    border-radius: 10px;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    li
    .dropdown-item
    .icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    li
    .dropdown-item
    .icon
    img {
    width: 100%;
    height: 100%;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    li
    .dropdown-item
    .date {
    color: #989898;
    font-size: 14px;
    font-weight: 500;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    li
    .dropdown-item
    h6 {
    text-wrap: wrap;
    margin-bottom: 5px;
}
.navbar-box.dashboard-header
    .actions
    .notifications
    .dropdown-menu
    .view-all
    h6 {
    font-weight: bold;
    padding: 10px;
    padding-bottom: 0;
    margin-top: 10px;
    border-top: 1px solid #b5b5b5;
    color: var(--yellow);
}

.dashboard-page {
    position: relative;
    overflow-x: hidden;
}
.dashboard-page > .row > div {
    padding-inline: 0;
}
.dashboard-page > .row > div:first-child {
    max-width: 250px;
}
.dashboard-page .main-content {
    background-color: #1c1a1f;
    min-height: calc(100vh - 172px);
    padding: 25px 15px;
}
.dashboard-page .main-content > .container {
    padding: 0;
}
@media (max-width: 991px) {
    .dashboard-page .main-content > .container {
        max-width: none;
    }
}
.dashboard-page .main-content .content-box {
    background-color: #080808;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
    .dashboard-page .main-content .content-box {
        padding: 20px 10px;
    }
}
.dashboard-page .main-content .content-box:not(:last-child) {
    margin-bottom: 20px;
}
.dashboard-page .add-card {
    border: 1px solid #5e84a1;
    background-color: #dee5ed;
    width: 300px;
    height: 350px;
    display: block;
    border-radius: 17px;
    position: relative;
}
.dashboard-page .add-card .add-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
}
.dashboard-page .add-card .add-label {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--slate);
    font-size: 19px;
    font-weight: 600;
}

/**
   * Sidebar Styles ==>
*/
.sidebar {
    background-color: #1c1a1f;
    height: calc(100vh - 48px);
    width: 250px;
    position: fixed;
    z-index: 900;
}
@media (max-width: 1199px) {
    .sidebar {
        height: calc(100vh - 132px);
    }
}
@media (max-width: 991px) {
    .sidebar {
        position: absolute;
        top: 0px;
        right: -250px;
        transition: 0.3s;
    }
    .sidebar.show {
        right: 0;
    }
}
.sidebar .nav-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: auto;
}
.sidebar .nav-list::-webkit-scrollbar {
    display: none;
}
.sidebar .nav-list .nav-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: 0.2s;
}
.sidebar .nav-list .nav-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    transition: 0.3s;
}

.sidebar .nav-list .nav-item:is(.active) {
    background-color: #f1d089;
}

.sidebar .nav-list .nav-item:is(.active) a {
    margin-inline-start: 15px;
    color: #1c1a1f;
}

.sidebar .nav-list .nav-item:is(.active).signout a {
    color: #ed2c1e;
}
.sidebar .nav-list .copyright {
    padding-block: 10px;
    border-top: 1px solid var(--yellow);
    text-align: center;
    color: white;
}
.sidebar .nav-list .copyright a {
    color: var(--yellow);
    font-weight: 600;
}
.sidebar .menu-dashes {
    position: absolute;
    top: 0px;
    right: 250px;
    width: 44px;
    height: 44px;
    font-size: 25px;
    place-content: center;
    background: var(--dark);
    color: var(--yellow);
    cursor: pointer;
    transition: 0.3s;
}
.sidebar .menu-dashes > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    line-height: 1;
}
.sidebar .menu-dashes > div.close {
    opacity: 0;
}
.sidebar.show .menu-dashes .open {
    opacity: 0;
}
.sidebar.show .menu-dashes .close {
    opacity: 1;
}

/**
   * Favorite Page Styles ==>
*/
#favorite .club-card {
    padding: 0px;
}
#favorite .club-card .card-head {
    padding: 15px;
    padding-bottom: 0;
}
#favorite .club-card .card-body {
    padding-inline: 15px;
}
#favorite .club-card .card-foo {
    padding: 10px 15px;
    margin-top: 8px;
    border-top: 1px solid #ddd;
}
#favorite .club-card .card-foo .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #384049;
    font-size: 18px;
    display: grid;
    place-content: center;
    color: white;
}
#favorite .club-card .card-foo .favorite {
    color: #c41b21;
    font-size: 25px;
    transition: 0.3s;
}
#favorite .club-card .card-foo .favorite:is(:hover, .active) {
    color: #ed2c1e;
}
#favorite .club-card .card-foo .favorite:is(:active) {
    transform: scale(1.1);
}

/**
   * Company Account Page Styles ==>
*/
#company-account .container {
    padding-block: 1rem 3rem;
}
#company-account .container > .row .box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
#company-account .container > .row .box-head .edit-box {
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--dark);
    padding: 10px;
}

/**
   * Add Company Page Styles ==>
*/
#add-company .card-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
#add-company .alert-box {
    padding: 10px 30px;
    border-radius: 10px;
    border: 1px solid;
    background: #eff0f0;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-top: 35px;
}

.form-action {
    display: flex;
    justify-content: end;
    gap: 20px;
    width: 25%;
}
.form-action * {
    width: 150px !important;
    height: 50px !important;
}
@media (max-width: 768px) {
    .form-action {
        /* flex-direction: column; */
        justify-content: center;
        width: 100%;
    }

    .form-action * {
        width: 100%;
        margin-bottom: 20px;
    }
}

.add-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.add-img .img-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #e9e9e9;
    margin-bottom: 20px;
    margin-inline: auto;
    overflow: hidden;
    display: grid;
    place-content: center;
    cursor: pointer;
}
.add-img .outline-yellow-btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}

.img-boxs-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.img-boxs-list .img-box-item {
    background-color: white;
    border: 1px solid #c3d5e2;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 20px;
    flex-grow: 1;
    justify-content: space-between;
}
@media (min-width: 474px) and (max-width: 858px) {
    .img-boxs-list .img-box-item {
        width: 49%;
    }
}

.img-boxs-list .img-box-item .img-box {
    margin: 0;
    width: 60px;
    height: 60px;
}

.img-boxs-list .img-box-item .img-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img-boxs-list .img-box-item .img-description .img-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.img-boxs-list .img-box-item .img-description .img-actions a {
    width: 50%;
    height: 20px;
    border: 1px solid;
    border-radius: 50px;
    display: grid;
    place-content: center;
}

.accounts-list .add-account {
    height: 100%;
    min-height: 333px;
}
.accounts-list .add-account a {
    cursor: pointer;
    height: 100%;
    background: #dee5ed;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.accounts-list .add-account a img {
    width: 75px;
}
.accounts-list .add-account a h6 {
    margin-top: 40px;
    color: #5e84a1;
}
.accounts-list .service-item {
    background: #080808;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.accounts-list .service-item img {
    max-width: 100%;
}
.accounts-list .service-item .service-title {
    margin-block: 15px;
}
.accounts-list .service-item .service-title p {
    color: #777;
}
.accounts-list .service-item .service-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.accounts-list .service-item .service-actions a:first-child {
    border: 1px solid var(--yellow);
    background-color: var(--yellow);
    color: white;
    border-radius: 20px;
    padding: 2px 10px;
    transition: 0.3s;
}
.accounts-list .service-item .service-actions a:first-child:hover {
    color: white;
    color: var(--yellow);
}
.accounts-list .service-item .service-actions a:nth-child(2) {
    border: 1px solid red;
    background-color: red;
    color: white;
    border-radius: 20px;
    padding: 2px 10px;
    transition: 0.3s;
}
.accounts-list .service-item .service-actions a:nth-child(2):hover {
    background-color: white;
    color: red;
}
.accounts-list .service-item .service-actions a:last-child {
    border: 1px solid var(--dark);
    color: white;
    background: var(--dark);
    border-radius: 20px;
    padding: 2px 10px;
    transition: 0.3s;
}
.accounts-list .service-item .service-actions a:last-child:hover {
    background-color: white;
    color: var(--dark);
}

.content {
    overflow-x: auto;
}
.content .table {
    min-width: -moz-max-content;
    min-width: max-content;
    transition: 1s;
}
.content .table .thead,
.content .table .tbody .tr {
    padding: 3px 5px;
    padding-right: 15px;
}
.content .table .thead p,
.content .table .tbody .tr p {
    font-size: 18px;
    min-width: 105px;
    text-align: center;
}
.content .table .thead {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    justify-content: space-between;
}
.content .table .thead p {
    font-weight: bold;
}
.content .table .tbody .tr {
    display: flex;
    justify-content: space-between;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 7px;
}
.content .table .tbody .tr .items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-inline: 0;
}
.content .table .tbody .tr .items p {
    color: #5e84a1;
}
.content .table .tbody .tr .items p.name {
    display: flex;
    align-items: center;
}
.content .table .tbody .tr .items p.name img {
    border-radius: 50%;
    width: 35px;
}
.content .table .tbody .tr .items p.status {
    color: #4dc41b;
}
.content .table .tbody .tr .option {
    position: relative;
    font-size: 18px;
    color: var(--background-color);
}
.content .table .tbody .tr .option svg {
    cursor: pointer;
}
.content .table .tbody .tr .option .icons {
    gap: 7px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    background-color: white;
    padding: 5px;
    border-radius: 4px;
    display: none;
}
.content .table .tbody .tr .option .icons span {
    height: 18px;
    line-height: 1;
}
.content .table .tbody .tr .option .icons.open {
    display: flex;
}

.verification .content-box {
    height: auto;
}
.verification .content-box:not(:last-child) {
    margin-bottom: 20px;
}
.verification .content-box .box-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.verification .content-box .box-body .form-check {
    width: 110px;
}
.verification .content-box .box-body .form-check .form-check-input:checked {
    display: inline;
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.processing {
    background-color: var(--yellow);
    border-color: var(--yellow);
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.processing
    + label {
    color: var(--yellow);
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.successfully {
    background-color: #4dc41b;
    border-color: #4dc41b;
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.successfully
    + label {
    color: #4dc41b;
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.without {
    background-color: #707070;
    border-color: #707070;
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.without
    + label {
    color: #707070;
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.denied {
    background-color: #c41b21;
    border-color: #c41b21;
}
.verification
    .content-box
    .box-body
    .form-check
    .form-check-input:checked.denied
    + label {
    color: #c41b21;
}
.verification .content-box .box-body .tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 85%;
    font-weight: 600;
    color: var(--yellow);
    background: #fcfdf2;
    border-radius: 30px;
    padding: 5px 20px;
}
.verification .content-box .progress-box {
    min-width: 125px;
}
.verification .content-box .progress-box .progress-info {
    font-size: 80%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.verification .content-box .progress-box .progress-info .percentage {
    color: var(--yellow);
}
.verification .content-box .progress-box .progress {
    height: 8px;
}
.verification .contact-info {
    width: 100%;
}
.verification .contact-info h5 {
    position: relative;
    margin-bottom: 25px;
    width: -moz-fit-content;
    width: fit-content;
}
.verification .contact-info h5::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 75%;
    height: 2px;
    right: 0;
    background: var(--dark);
}
.verification .contact-info .inp-box {
    display: flex;
    gap: 5px;
    align-items: center;
} /*# sourceMappingURL=style.css.map */

.favorite.company-listing {
    width: 30px;
    font-size: 22px;
    color: #dee5ed;
    cursor: pointer;
}

.select2.select2-container {
    background: #fff !important;
}
