/* ===================================
   Header
====================================== */

header.gn-header-layout.gn-sticky {
    position: relative;
}

.gn-header-layout.gn-sticky>.gn-header-nav {
    width: 100%;
}

header.gn-header-layout.gn-appear>.gn-header-nav {
    position: fixed;
    z-index: 999;
    margin-top: 0;
    -webkit-animation-name: gn-fade-top;
    -o-animation-name: gn-fade-top;
    animation-name: gn-fade-top;
    -webkit-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*User Menu*/
.gn-action-menu-wrapper {
    font-family: var(--gigneo-primary-font);
    display: inline-flex;
    align-items: center;
    text-align: left;
    gap: 10px;
}

.gn-user-action-menu {
    position: relative;
}

.gn-action-menu-wrapper>.gn-user-auth-buttons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gn-action-menu-wrapper .gn-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--gigneo-light-grey-color));
    margin: 0;
    cursor: pointer;
}

.gn-action-menu-wrapper .gn-user-avatar>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Notifications*/
.gn-user-notifications {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.gn-user-notifications .gn-icon {
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color .3s ease-in-out, background .3s ease-in-out;
}
.gn-user-notifications .gn-notification-item .gn-icon{
    width: 30px;
    height: 30px;
}
.gn-user-notifications .gn-icon>i {
    font-size: 20px;
}

.gn-user-notifications .gn-icon>.gn-count {
    position: relative;
    font-size: 0;
    border-radius: var(--gigneo-border-radius-lg);
    background: #F04438;
    color: #fff;
    margin-top: -8px;
    margin-right: -4px;
    padding: 2px;
}

.gn-user-notifications .gn-icon>.gn-count:empty {
    display: none !important;
}

.gn-user-notifications .gn-icon:hover {
    background-color: rgb(var(--gigneo-grey-color));
}

.gn-user-notification {
    position: relative;
}

.gn-user-notification .gn-notification-dropdown {
    right: 0;
    z-index: 9;
    width: 400px;
    padding: 14px;
    display: none;
    margin-top: 10px;
    position: absolute;
    background-color: #fff;
    animation-duration: 0.15s;
    animation-fill-mode: both;
    animation-name: gn-enter-top;
    border-radius: var(--gigneo-border-radius-xl);
    border: 1px solid rgb(var(--gigneo-grey-color));
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.02);
}

.gn-user-notification.gn-active .gn-notification-dropdown {
    display: block;
}

.gn-user-notification .gn-notifications {
    margin: 24px 0 0;
}

.gn-user-notification .gn-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.gn-notifications .gn-notification-item {
    gap: 10px;
    display: flex;
    padding: 14px 12px;
    align-items: flex-start;
    border-radius: var(--gigneo-border-radius-md);
}

.gn-notifications .gn-notification-item+.gn-notification-item {
    margin: 4px 0 0;
}

.gn-notifications .gn-notification-item.gn-unread {
    background: rgba(var(--gigneo-grey-color));
}

.gn-notification-item .gn-avatar {
    margin: 0;
    flex: none;
    width: 30px;
    height: 30px;
    display: flex;
    overflow: hidden;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.gn-notification-item .gn-avatar>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* .gn-notification-item .gn-header,
.gn-notification-item .gn-meta {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.gn-notification-item .gn-info {
    width: 100%;
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gn-notification-item .gn-info .gn-header {
    width: 100%;
    max-width: 210px;
}
.gn-notification-item .gn-header .gn-title {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgb(var(--gigneo-secondary-font-color));
}

.gn-notification-item .gn-notification-mark-read,
.gn-notification-item .gn-notification-link {
    opacity: 0;
    padding: 8px;
    visibility: hidden;
}

.gn-notification-item .gn-notification-mark-read::after {
    content: none;
}

.gn-notification-item:hover .gn-notification-mark-read,
.gn-notification-item:hover .gn-notification-link {
    opacity: 1;
    visibility: visible;
}

.gn-notification-item.gn-read .gn-notification-mark-read>i::before {
    content: "\e9a7";
}

.gn-notification-item .gn-date {
    display: block;
    font-size: 12px;
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-notification-item .gn-description {
    margin: 3px 0 0;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-notification-item .gn-info .gn-footer .gn-btn {
    font-size: 12px;
    padding: 6px 18px;
    background-color: #fff;
    border-color: rgb(var(--gigneo-grey-color));
}

.gn-notification-item .gn-info .gn-footer .gn-btn:hover {
    color: #fff;
    background: rgba(var(--gigneo-primary-color));
    border-color: rgba(var(--gigneo-primary-color));
}

.gn-notification-dropdown .gn-btn-outline-light {
    width: 100%;
    margin: 24px 0 0;
}

/* ===================================
   Authentication
====================================== */
.gn-auth-register-step,
.gn-auth-form {
    gap: 20px;
    display: flex;
    position: relative;
    flex-direction: column;
}
.gn-auth-register-step-username .gn-auth-form-fields,
.gn-auth-register-step-role .gn-auth-form-fields{
    margin: 24px 0;
}

.gn-auth-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, .65);
    transition: opacity .15s ease-in-out, visibility .15s ease-in-out;
}

.gn-auth-popup-wrapper:not(.gn-active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
body:has(.gn-auth-popup-wrapper.gn-active) {
    overflow: hidden;
}
.gn-auth-popup-dialog{
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    display: flex;
    padding: 16px;
    transform: translateY(100px);
    transition: transform .3s;
}
.gn-auth-popup-wrapper .gn-auth-inner {
    display: flex;
    width: 100%;
    margin: auto;
    font-size: 16px;
    padding: 32px;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: var(--gigneo-border-radius-xl);
    font-family: var(--gigneo-primary-font);
}
.gn-auth-popup-wrapper .gn-auth-inner:has(.gn-auth-image){
    padding: 0;
    max-width: 480px;
}
.gn-auth-popup-wrapper .gn-auth-inner:has(.gn-auth-image) .gn-auth-content{
    padding: 24px;
}
.gn-auth-popup-wrapper.gn-active .gn-auth-popup-dialog{
    transform: translateY(0);
}
.gn-auth-popup-dialog:has(.gn-social-auth .gn-modal-wrapper.gn-active){
    overflow: visible;
}
@media (max-height: 800px){
    .gn-auth-popup-wrapper.gn-active .gn-auth-popup-dialog .gn-modal-body{
        max-height: calc(90vh - 260px);
    }
}
/* .gn-auth-popup-wrapper .gn-auth-inner > div {
    flex: 1;
    width: 612px;
    max-width: 100%;
    min-height: 788px;
} */
/* .gn-auth-popup-layout-2.gn-auth-popup-wrapper .gn-auth-inner > .gn-auth-content{
    padding-top: 30px;
    padding-bottom: 30px;
} */

/* .gn-auth-register-step .gn-form-fields .gn-form-field .gn-form-field-checkbox>label {
    color: rgb(var(--gigneo-secondary-font-color));
} */

.gn-auth-image{
    width: 100%;
    flex: none;
    display: none;
    max-width: 480px;
}
.gn-auth-popup-wrapper .gn-auth-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}
.gn-auth-popup-layout-2 .gn-auth-image{
    padding: 16px;
}
.gn-auth-popup-layout-2 .gn-auth-image>img {
    border-radius: var(--gigneo-border-radius-xl);
}

.gn-auth-popup-wrapper .gn-auth-content{
    width: 100%;
    align-self: center;
}
/* .gn-auth-popup-wrapper .gn-auth-content {
    padding: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} */

/* .gn-auth-popup-wrapper .gn-auth-content>form {
    width: 380px;
    max-width: 100%;
    position: initial;
} */

/*Auth Heading*/
.gn-auth-heading-area{
    text-align: center;
}

.gn-auth-heading-area .gn-title {
    margin: 0;
    font-size: 20px;
}

.gn-auth-heading-area .gn-description {
    margin: 6px 0 0;
    font-size: 14px;
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-auth-heading-area .gn-note {
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    color: rgb(var(--gigneo-primary-font-color));
    margin-top: 10px;
}

/*Social Auth*/
.gn-social-auth {
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.gn-social-auth .gn-modal-info{
    padding: 24px;
}
.gn-social-auth .gn-modal-header{
    text-align: center;
    padding: 0;
    margin: 0 0 20px;
}

.gn-social-auth .gn-social-auth-separator-wrapper {
    width: 100%;
    font-size: 12px;
    margin-top: 8px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gn-social-auth .gn-social-auth-separator {
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
    line-height: 8px;
    position: relative;
    background-color: #fff;
    color: rgb(var(--gigneo-dark-grey-color));
}

.gn-social-auth .gn-social-auth-separator-wrapper::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(var(--gigneo-grey-color));
}

.gn-social-auth .gn-social-auth-icon {
    flex: auto;
    gap: 12px;
    padding: 0 10px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    border-radius: var(--gigneo-border-radius-lg);
    border: 1px solid rgb(var(--gigneo-grey-color));
    background-color: rgb(var(--gigneo-light-grey-color));
    transition: all .15s ease-in-out;
}
.gn-social-auth .gn-social-auth-icon:focus,
.gn-social-auth .gn-social-auth-icon:hover {
    background-color: rgb(var(--gigneo-light-grey-color));
    border-color: rgb(var(--gigneo-dark-grey-color));
}
.gn-social-auth .gn-social-auth-icon img{
    max-width: 18px;
    max-height: 18px;
}
.gn-social-auth .gn-social-auth-icon .gn-title{
    font-size: 16px;
    font-weight: 500;
    display: none;
    color: rgb(var(--gigneo-secondary-font-color));
}

.gn-social-auth .gn-modal-header>.title {
    font-size: 20px;
}

.gn-social-auth .gn-modal-header>.desc {
    font-size: 14px;
    margin: 6px 0 0;
    color: rgb(var(--gigneo-primary-font-color));
}
.gn-social-auth .gn-modal-body{
    padding: 0;
}
.gn-social-auth .gn-modal-wrapper .gn-modal-content{
    width: 480px;
}
.gn-social-auth .gn-modal-footer{
    padding: 0;
    margin: 20px 0 0;
}
.gn-social-auth .gn-modal-footer .gn-btn.gn-btn-primary{flex: auto;}
.gn-auth-form .gn-social-auth .gn-form-field.gn-field-roles{
    margin: 0 0 12px;
}
.gn-auth-form .gn-social-auth .gn-form-fields .gn-field-role label{
    padding: 17px;
}
.gn-auth-form .gn-social-auth .gn-form-fields .gn-field-role label::before{
    right: 18px;
}
.gn-auth-form .gn-social-auth .gn-form-fields .gn-field-role label::after{
    right: 24px;
}
.gn-social-auth .gn-field-role-title {
    width: 100%;
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: var(--gigneo-line-height);
    position: relative;
    color: rgb(var(--gigneo-secondary-font-color));
}

.gn-auth-popup-wrapper .gn-notice-wrapper {
    margin: 15px 0;
}

.gn-social-auth .gn-form-fields {
    gap: 0;
    margin: 0;
}

.gn-social-auth .gn-note {
    font-size: 14px;
    margin: 12px 0 0;
    font-weight: 400;
    color: rgb(var(--gigneo-primary-font-color));
}

/*Auth Submit Action*/
.gn-auth-actions {
    gap: 12px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.gn-auth-actions:has(.gn-auth-register-back-btn){
    flex-direction: row;
}
.gn-auth-actions .gn-btn.gn-btn-primary{
    flex: auto;
}
button.gn-auth-action-btn {
    display: flex;
    gap: 8px;
}

button.gn-auth-action-btn:hover,
button.gn-auth-action-btn:focus {
    background-color: rgb(var(--gigneo-dark-color));
    border-color: rgb(var(--gigneo-dark-color));
}

p.gn-auth-action-text {
    font-size: 14px;
    margin-bottom: 0;
    color: rgb(var(--gigneo-primary-font-color));
}

p.gn-auth-action-text>a {
    transition: color .3s;
    text-underline-offset: 3px;
    color: rgb(var(--gigneo-primary-color));
}
p.gn-auth-action-text>a:hover {
    text-decoration: underline;
}
.gn-auth-form-fields {
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gn-auth-form .gn-form-field.gn-field-roles{
    margin: 0;
    gap: 12px;
    flex-direction: column;
}
.gn-auth-form .gn-field-roles .gn-field-role{
    width: 100%;
}
.gn-auth-form .gn-form-fields .gn-field-role label{
    gap: 0;
    text-align: left;
    padding: 23px 20px;
    align-items: flex-start;
    border-radius: var(--gigneo-border-radius-xl);
}
.gn-auth-form .gn-form-fields .gn-field-role label .gn-icon{
    display: block;
    font-size: 24px;
    margin: 0 0 24px;
    color: rgb(var(--gigneo-primary-font-color));
}
.gn-auth-form .gn-form-fields .gn-field-role label .gn-icon i{
    display: block;
}
.gn-auth-form .gn-form-fields .gn-field-role label .gn-title{
    font-size: 16px;
    margin: auto 0 4px;
}
.gn-auth-form .gn-form-fields .gn-field-role label .gn-description{
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgb(var(--gigneo-primary-font-color));
}
.gn-auth-form .gn-field-role label::before{
    top: 24px;
    width: 20px;
    height: 20px;
    right: 20px;
}
.gn-auth-form .gn-field-role label::after{
    top: 30px;
    width: 8px;
    height: 8px;
    right: 26px;
}
.gn-auth-popup-close{
    top: 12px;
    z-index: 99;
    padding: 0;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    font-size: 14px;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: var(--gigneo-border-radius-md);
    background: rgb(var(--gigneo-light-grey-color));
    color: rgb(var(--gigneo-secondary-font-color));
    border: 1px solid rgb(var(--gigneo-grey-color));
}
.gn-auth-popup-close:focus,
.gn-auth-popup-close:hover{
    border-color: rgb(var(--gigneo-dark-grey-color));
    color: rgb(var(--gigneo-secondary-font-color));
    background-color: rgb(var(--gigneo-light-grey-color));
}
.gn-auth-register-step:not(:nth-child(1)) {
    display: none;
}

.gn-auth-register-back {
    margin-bottom: 25px;
}

.gn-auth-popup-wrapper .gn-auth-register-back {
    position: absolute;
    top: 15px;
    left: 50%;
    width: 350px;
    max-width: 100%;
    margin: 0;
    transform: translateX(-50%);
}

/* button.gn-auth-register-back-btn {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
} */

.gn-auth-register-back button {
    gap: 4px;
    font-size: 12px;
    color: rgb(var(--gigneo-dark-color));
    font-family: var(--gigneo-primary-font);
}

.gn-auth-register-back button:hover {
    background-color: transparent;
    color: rgb(var(--gigneo-dark-color));
}

/* Auth Multistep Username  */
.gn-auth-input-wrapper input.gn-input-success,
.gn-auth-input-wrapper input.gn-input-success:focus-visible {
    border-color: #00b894;
}

.gn-auth-input-wrapper input.gn-input-invalid,
.gn-auth-input-wrapper input.gn-input-invalid:hover,
.gn-auth-input-wrapper input.gn-input-invalid:focus-visible {
    border-color: #f74040;
}

.gn-user-name-notice {
    display: block;
    color: #f74040;
    font-size: 12px;
    font-weight: 400;
    margin: 6px 0 0;
}

.gn-auth-input-wrapper input.gn-input-invalid,
.gn-auth-input-wrapper input.gn-input-success,
.gn-auth-input-wrapper input.gn-loading {
    padding-right: 30px;
}

.gn-auth-input-wrapper:has(input.gn-input-invalid)::before,
.gn-auth-input-wrapper:has(input.gn-input-success)::before {
    z-index: 99;
    top: 12px;
    right: 16px;
    content: "\e9aa";
    color: #f74040;
    position: absolute;
    font-family: 'hero-icons';
}

.gn-auth-input-wrapper:has(input.gn-input-invalid#gn-register-password)::before {
    display: none;
}

.gn-auth-input-wrapper:has(input.gn-loading)::before {
    content: '';
    top: 18px;
    width: 14px;
    height: 14px;
    right: 16px;
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    background-color: rgb(var(--gigneo-light-grey-color));
    animation: 0.5s gn-spin infinite linear;
    border: 2px solid #666;
    border-top-color: rgb(255 255 255 / 10%);
}

.gn-auth-input-wrapper:has(input.gn-input-success)::before {
    content: "\e96b";
    color: #00b894;
}

/* ===================================
   Freelancer Archive
====================================== */

.gn-freelancer-archive-wrapper .gn-category-filter-wrapper {
    position: relative;
}

.gn-freelancer-archive-wrapper .gn-category-filter {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.gn-freelancer-archive-wrapper .gn-category-filter .gn-filter-item {
    flex: none;
    font-size: 14px;
    min-width: 77px;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    justify-content: center;
    color: rgb(var(--gigneo-dark-grey-color));
    transition: color 0.3s ease, background-color 0.3s ease;
}

.gn-freelancer-archive-wrapper .gn-category-filter .gn-filter-item+.gn-filter-item {
    margin-left: 10px;
}

.gn-freelancer-archive-wrapper .gn-category-filter .gn-filter-item.gn-active,
.gn-freelancer-archive-wrapper .gn-category-filter .gn-filter-item:hover {
    color: rgb(var(--gigneo-secondary-font-color));
    background-color: rgb(var(--gigneo-grey-color));
}

.gn-freelancer-archive-wrapper .gn-category-filter-wrapper .gn-btn {
    left: 0;
    top: 50%;
    border: 0;
    z-index: 1;
    height: 100%;
    cursor: pointer;
    position: absolute;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #ffffff 50%, hsla(0, 0%, 100%, 0));
}

.gn-freelancer-archive-wrapper .gn-category-filter-wrapper .gn-btn.gn-next-icon {
    right: 0;
    left: auto;
    background: linear-gradient(270deg, #ffffff 50%, hsla(0, 0%, 100%, 0));
}

.gn-freelancer-archive-wrapper .gn-category-filter-wrapper .gn-btn.slick-disabled {
    display: none !important;
}

.gn-freelancer-archive-wrapper .gn-freelancer-card+.gn-freelancer-card {
    margin-top: 24px;
}

.gn-freelancer-card .gn-card-inner {
    padding: 24px;
    border: 1px solid rgb(var(--gigneo-grey-color));
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: var(--gigneo-border-radius-xl);
}

.gn-freelancer-card .gn-card-inner:hover {
    box-shadow: 5px 5px 0px 0px rgba(158, 71, 235, 0.08);
}

.gn-freelancer-card .gn-meta {
    padding: 0;
    display: flex;
    gap: 5px 16px;
    margin: 7px 0 0;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
}

.gn-freelancer-card .gn-meta li {
    list-style-type: none;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
    display: flex;
    opacity: 0.9;
    align-items: center;
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-freelancer-card .gn-meta li i {
    font-size: 15px;
}

.gn-freelancer-card .gn-meta li .gn-meta-action {
    font-size: 14px;
    font-weight: 400;
}

.gn-freelancer-card .gn-info {
    gap: 5px;
    display: flex;
    align-items: center;
}

.gn-freelancer-card .gn-info>.gn-name {
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    font-family: var(--gigneo-secondary-font);
    color: rgb(var(--gigneo-dark-color));
}

.gn-freelancer-card .gn-info>.gn-pro-tag {
    padding: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 8px;
    text-transform: uppercase;
    font-family: var(--gigneo-primary-font);
    border-radius: var(--gigneo-border-radius-sm);
    background-color: rgb(var(--gigneo-dark-color));
}

.gn-freelancer-card .gn-info>.gn-status {
    gap: 6px;
    display: flex;
    font-size: 14px;
    font-weight: 300;
    margin-left: 7px;
    padding-left: 12px;
    align-items: center;
    font-family: var(--gigneo-primary-font);
    color: rgb(var(--gigneo-dark-grey-color));
    border-left: 1px solid rgb(var(--gigneo-grey-color));
}

.gn-freelancer-card .gn-info>.gn-online {
    color: rgb(var(--gigneo-success-color));
}

.gn-freelancer-card .gn-info>.gn-offline {
    color: rgb(var(--gigneo-warning-color));
}

.gn-freelancer-card .gn-actions .gn-save-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #fff;
    border: 1px solid rgb(var(--gigneo-grey-color));
}

.gn-freelancer-card .gn-actions .gn-save-btn i {
    color: rgb(var(--gigneo-dark-color));
}

.gn-freelancer-card .gn-actions .gn-save-btn:hover {
    background-color: rgb(var(--gigneo-grey-color));
}

.gn-freelancer-card .gn-tags {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gn-freelancer-card .gn-tags .gn-tag {
    font-size: 13px;
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 100px;
    text-decoration: none;
    background: rgb(var(--gigneo-grey-color));
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-freelancer-card .gn-show-more-wrapper {
    position: relative;
}

.gn-freelancer-card .gn-show-more-wrapper .gn-show-more-items {
    display: none;
}

.gn-freelancer-card .gn-show-more-items::before {
    bottom: -9px;
    left: 14px;
    width: 21px;
    content: "";
    height: 9.5px;
    position: absolute;
    z-index: 1;
    rotate: 180deg;
    background-color: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.gn-freelancer-card .gn-show-more-items::after {
    z-index: 0;
    bottom: -10px;
    width: 24px;
    height: 10px;
    content: "";
    position: absolute;
    left: 13px;
    rotate: 180deg;
    background-color: #E5E7EB;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.gn-freelancer-card .gn-show-more-wrapper .gn-show-more-items .gn-tag {
    color: #5E5E64;
    font-size: 13px;
    font-weight: 400;
}

.gn-freelancer-card .gn-show-more-wrapper .gn-show-more-toggle {
    display: flex;
    color: #5E5E64;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 100px;
    background: #F5F6F9;
}

.gn-freelancer-card .gn-show-more-wrapper:hover .gn-show-more-items {
    left: 0;
    gap: 5px;
    z-index: 9;
    bottom: 125%;
    display: flex;
    width: 250px;
    padding: 10px;
    flex-wrap: wrap;
    position: absolute;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--gigneo-border-radius-md);
}

/*freelancer card style 1 */

.gn-freelancer-card-style-1 .gn-card-header {
    gap: 10px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.gn-freelancer-card-style-1 .gn-card-header .gn-details {
    gap: 16px;
    display: flex;
    align-items: center;
}

.gn-freelancer-card-style-1 .gn-card-header .gn-details .gn-avatar {
    margin: 0;
    flex: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.gn-freelancer-card-style-1 .gn-card-header .gn-details .gn-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.gn-freelancer-card-style-1 .gn-meta li a {
    color: inherit;
}

.gn-freelancer-card-style-1 .gn-avatar figure {
    margin: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.gn-freelancer-card-style-1 .gn-avatar figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.gn-freelancer-card-style-1 .gn-card-footer {
    margin-top: 16px;
}

.gn-freelancer-card-style-1 .gn-actions {
    gap: 12px;
    display: flex;
    align-items: center;
}

.gn-freelancer-card-style-1 .gn-actions .gn-save-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #fff;
    border: 1px solid rgb(var(--gigneo-grey-color));
}

.gn-freelancer-card-style-1 .gn-actions .gn-save-btn i {
    color: rgb(var(--gigneo-dark-color));
}

.gn-freelancer-card-style-1 .gn-actions .gn-save-btn:hover {
    background-color: rgb(var(--gigneo-grey-color));
}

.gn-freelancer-card-style-1 .gn-actions .gn-message-request {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

.gn-freelancer-card-style-1 .gn-actions .gn-contact-btn {
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 100px;
    background-color: rgb(var(--gigneo-dark-color));
    border: 1px solid rgb(var(--gigneo-dark-color));
}

.gn-freelancer-card-style-1 .gn-actions .gn-contact-btn i {
    font-size: 16px;
}

.gn-freelancer-card-style-1 .gn-services-list {
    gap: 16px;
    padding: 0;
    display: flex;
    margin: 26px 0 0;
    list-style: none;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.gn-freelancer-card-style-1 .gn-services-list::-webkit-scrollbar {
    height: 5px;
}

.gn-freelancer-card-style-1 .gn-services-list::-webkit-scrollbar-thumb {
    background-color: #e8e8e9;
    border-radius: 16px;
}

.gn-freelancer-card-style-1 .gn-services-list::-webkit-scrollbar-button {
    display: none;
}

.gn-freelancer-card-style-1 .gn-services-list li {
    list-style-type: none;
}

.gn-freelancer-card-style-1 .gn-service-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.gn-freelancer-card-style-1 .gn-service-wrapper:hover::after {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    border-radius: 12px 12px 15px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.gn-freelancer-card-style-1 .gn-service-wrapper .gn-service-image {
    margin: 0;
    border-radius: 12px;
    height: 200px;
    max-width: 298px;
    width: 100%;
    min-width: 298px;
}

.gn-freelancer-card-style-1 .gn-service-wrapper .gn-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    border-radius: 12px 12px 15px;
    transition: transform 0.3s ease;
}

.gn-freelancer-card-style-1 .gn-service-wrapper:hover .gn-service-image img {
    transform: scale(1.03);
}

.gn-freelancer-card-style-1 .gn-service-saved {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 30px;
    width: 30px;
    padding: 0;
    z-index: 1;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    visibility: hidden;
    opacity: 0;
    transition: background-color 0.6s ease, visibility 0.6s ease, opacity 0.6s ease;
}

.gn-freelancer-card-style-1 .gn-service-saved:hover {
    background-color: #fff;
}

.gn-freelancer-card-style-1 .gn-service-wrapper:hover .gn-service-saved {
    opacity: 1;
    visibility: visible;
}

.gn-freelancer-card-style-1 .gn-service-saved i {
    color: #585858;
}

.gn-freelancer-card-style-1 .gn-service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
    text-decoration: none;
    justify-content: space-between;
}

.gn-freelancer-card-style-1 .gn-service-content .gn-title {
    margin: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-left: 16px;
    transform: translateY(10px);
    transition: transform 0.3s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
    font-family: var(--gigneo-primary-font);
}

.gn-freelancer-card-style-1 .gn-service-wrapper:hover .gn-service-content .gn-title {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gn-freelancer-card-style-1 .gn-service-icon-wrap {
    border-radius: 12px 0px 0px 0px;
    background: #FFF;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: none;
    position: relative;
}

.gn-freelancer-card-style-1 .gn-service-icon-wrap i {
    color: rgb(var(--gigneo-dark-color));
    font-size: 16px;
}

.gn-freelancer-card-style-1 .gn-service-icon-wrap .wr-arrow-icon {
    position: absolute;
    transform: translate(-30px, 30px);
    transition: transform 0.6s ease;
}

.gn-freelancer-card-style-1 .gn-service-wrapper:hover .gn-service-icon-wrap .wr-arrow-icon {
    transform: translate(0);
    transition: transform 0.6s ease;
}

.gn-freelancer-card-style-1 .gn-service-icon-wrap i:not(.wr-arrow-icon) {
    transform: translate(0, 0);
    transition: transform 0.6s ease;
}

.gn-freelancer-card-style-1 .gn-service-wrapper:hover .gn-service-icon-wrap i:not(.wr-arrow-icon) {
    transform: translate(30px, -30px);
}

.gn-freelancer-card-style-1 .gn-service-icon-wrap::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -15px;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M15.9941 1.11228V0.447266C15.9995 0.660526 15.9996 0.882556 15.9941 1.11228V16.0039H0.4375C12.6693 16.0039 15.8662 6.46831 15.9941 1.11228Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.gn-freelancer-card-style-1 .gn-service-icon-wrap::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -1px;
    left: -15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M16.0332 1.15524V0.490234C16.0385 0.703495 16.0387 0.925525 16.0332 1.15524V16.0469H0.476562C12.7084 16.0469 15.9052 6.51128 16.0332 1.15524Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ===================================
   Services Archive
====================================== */

.gn-service-archive-wrapper .gn-service-card+.gn-service-card {
    margin-top: 24px;
}

.gn-service-card .gn-card-inner {
    border: 1px solid rgb(var(--gigneo-grey-color));
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: var(--gigneo-border-radius-xl);
}

.gn-service-card .gn-card-inner:hover {
    box-shadow: 5px 5px 0px 0px rgba(158, 71, 235, 0.08);
}

.gn-service-card .gn-meta {
    padding: 0;
    display: flex;
    gap: 5px 16px;
    margin: 7px 0 0;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
}

.gn-service-card .gn-meta li {
    list-style-type: none;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
    display: flex;
    opacity: 0.9;
    align-items: center;
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-service-card .gn-meta li i {
    font-size: 15px;
}

.gn-service-card .gn-service-content .gn-description {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--gigneo-primary-font-color), 0.8);
}

.gn-service-card .gn-meta li .gn-meta-action {
    font-size: 14px;
    font-weight: 400;
}

.gn-service-card .gn-info {
    gap: 5px;
    display: flex;
    align-items: center;
}

.gn-service-card .gn-info>.gn-name {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    font-family: var(--gigneo-secondary-font);
    color: rgb(var(--gigneo-dark-color));
}

.gn-service-card .gn-info>.gn-pro-tag {
    padding: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 8px;
    text-transform: uppercase;
    font-family: var(--gigneo-primary-font);
    border-radius: var(--gigneo-border-radius-sm);
    background-color: rgb(var(--gigneo-dark-color));
}

.gn-service-card .gn-info>.gn-status {
    gap: 6px;
    display: flex;
    font-size: 14px;
    font-weight: 300;
    margin-left: 7px;
    padding-left: 12px;
    align-items: center;
    font-family: var(--gigneo-primary-font);
    color: rgb(var(--gigneo-dark-grey-color));
    border-left: 1px solid rgb(var(--gigneo-grey-color));
}

.gn-service-card .gn-info>.gn-online {
    color: rgb(var(--gigneo-success-color));
}

.gn-service-card .gn-info>.gn-offline {
    color: rgb(var(--gigneo-warning-color));
}

.gn-service-card .gn-actions {
    gap: 12px;
    display: flex;
    align-items: center;
}

.gn-service-card .gn-actions .gn-save-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #fff;
    border: 1px solid rgb(var(--gigneo-grey-color));
}

.gn-service-card .gn-actions .gn-save-btn i {
    color: rgb(var(--gigneo-dark-color));
}

.gn-service-card .gn-actions .gn-save-btn:hover {
    background-color: rgb(var(--gigneo-grey-color));
}

.gn-service-card .gn-card-body .gn-title {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(var(--gigneo-secondary-font-color));
}

.gn-service-card .gn-tags {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gn-service-card .gn-tags .gn-tag {
    font-size: 13px;
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 100px;
    text-decoration: none;
    background: rgb(var(--gigneo-grey-color));
    color: rgb(var(--gigneo-primary-font-color));
}

.gn-service-card .gn-show-more-wrapper {
    position: relative;
}

.gn-service-card .gn-show-more-wrapper .gn-show-more-items {
    display: none;
}

.gn-service-card .gn-show-more-items::before {
    bottom: -9px;
    left: 14px;
    width: 21px;
    content: "";
    height: 9.5px;
    position: absolute;
    z-index: 1;
    rotate: 180deg;
    background-color: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.gn-service-card .gn-show-more-items::after {
    z-index: 0;
    bottom: -10px;
    width: 24px;
    height: 10px;
    content: "";
    position: absolute;
    left: 13px;
    rotate: 180deg;
    background-color: #E5E7EB;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.gn-service-card .gn-show-more-wrapper .gn-show-more-items .gn-tag {
    color: #5E5E64;
    font-size: 13px;
    font-weight: 400;
}

.gn-service-card .gn-show-more-wrapper .gn-show-more-toggle {
    display: flex;
    color: #5E5E64;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 100px;
    background: #F5F6F9;
}

.gn-service-card .gn-show-more-wrapper:hover .gn-show-more-items {
    left: 0;
    gap: 5px;
    z-index: 9;
    bottom: 125%;
    display: flex;
    width: 250px;
    padding: 10px;
    flex-wrap: wrap;
    position: absolute;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--gigneo-border-radius-md);
}

.gn-service-card .gn-play-video-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gn-service-card .gn-actions .gn-btn-dark {
    border-radius: 999px;
}

/*service layout 1 */
.gn-service-card-style-1 .gn-card-body {
    padding: 24px;
}

.gn-service-card-style-1 .gn-card-footer {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    justify-content: space-between;
    background-color: rgb(var(--gigneo-grey-color));
    border-radius: 0 0 var(--gigneo-border-radius-xl) var(--gigneo-border-radius-xl);
}

.gn-service-card-style-1 .gn-card-footer .gn-details {
    gap: 15px;
    display: flex;
    align-items: center;
}

.gn-service-card-style-1 .gn-card-footer .gn-details .gn-avatar {
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 2px solid #FFF;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.gn-service-card-style-1 .gn-card-footer .gn-details .gn-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.gn-service-card-style-1 .gn-meta {
    margin-top: 3px;
}

.gn-service-card-style-1 .gn-card-body {
    gap: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gn-service-card-style-1 .gn-service-content {
    width: 60%;
}

.gn-service-card-style-1 .gn-service-media-slider {
    gap: 16px;
    flex: none;
    width: 40%;
    display: flex;
}

.gn-service-card-style-1 .gn-service-media {
    overflow: hidden;
    position: relative;
    border-radius: var(--gigneo-border-radius-lg);
}

.gn-service-card-style-1 .gn-service-media+.gn-service-media {
    margin-left: 16px;
}

.gn-service-card-style-1 .gn-service-content-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.gn-service-card-style-1 .gn-service-icon-wrap {
    border-radius: 12px 0px 0px 0px;
    background: #FFF;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: none;
    position: relative;
}

.gn-service-card-style-1 .gn-service-icon-wrap i {
    color: rgb(var(--gigneo-dark-color));
    font-size: 16px;
}

.gn-service-card-style-1 .gn-service-icon-wrap .wr-arrow-icon {
    position: absolute;
    transform: translate(-30px, 30px);
    transition: transform 0.6s ease;
}

.gn-service-card-style-1 .gn-service-media:hover .gn-service-icon-wrap .wr-arrow-icon {
    transform: translate(0);
    transition: transform 0.6s ease;
}

.gn-service-card-style-1 .gn-service-icon-wrap i:not(.wr-arrow-icon) {
    transform: translate(0, 0);
    transition: transform 0.6s ease;
}

.gn-service-card-style-1 .gn-service-media:hover .gn-service-icon-wrap i:not(.wr-arrow-icon) {
    transform: translate(30px, -30px);
}

.gn-service-card-style-1 .gn-service-icon-wrap::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -15px;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M15.9941 1.11228V0.447266C15.9995 0.660526 15.9996 0.882556 15.9941 1.11228V16.0039H0.4375C12.6693 16.0039 15.8662 6.46831 15.9941 1.11228Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.gn-service-card-style-1 .gn-service-icon-wrap::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -1px;
    left: -15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M16.0332 1.15524V0.490234C16.0385 0.703495 16.0387 0.925525 16.0332 1.15524V16.0469H0.476562C12.7084 16.0469 15.9052 6.51128 16.0332 1.15524Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ===================================
   Pagination
====================================== */

.gn-pagination-wrap {
    display: flex;
    align-items: end;
    justify-content: end;
}

.gn-pagination-wrap .gn-pagination {
    gap: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    list-style-type: none;
    margin-top: 25px;
}

.gn-pagination-wrap .gn-pagination .gn-page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background-color: #fff;
    font-family: var(--gigneo-secondary-font);
    border-radius: var(--gigneo-border-radius-md);
    color: rgb(var(--gigneo-secondary-font-color));
    border: 1px solid rgb(var(--gigneo-grey-color));
    transition: background-color .3s ease, color .3s ease;
}

.gn-pagination-wrap .gn-pagination .gn-current,
.gn-pagination-wrap .gn-pagination .gn-page-numbers:hover {
    color: #fff;
    background-color: rgb(var(--gigneo-primary-color));
}

.gn-pagination-wrap .gn-pagination .gn-next,
.gn-pagination-wrap .gn-pagination .gn-prev {
    width: auto;
    padding: 0 20px;
}

/*Swiper*/
.gn-swiper {
    position: relative;
}


/* Responsive */
@media(max-width: 992px) {
    .site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .gn-action-menu-wrapper {
        display: none !important
    }
}
@media(min-width: 1439px) {
    .gn-social-auth:not(:has(.gn-social-auth-icon:nth-child(3))) .gn-title,
    .gn-social-auth .gn-social-auth-icon .gn-title {
        display: block;
    }
}
@media(min-width: 991px) {
    .gn-auth-image {
        display: block;
    }
    .gn-auth-popup-wrapper .gn-auth-inner:has(.gn-auth-image){
        max-width: 960px;
    }
    .gn-social-auth .gn-modal-info,
    .gn-auth-popup-wrapper .gn-auth-inner:has(.gn-auth-image) .gn-auth-content{
        padding: 32px;
    }
    .gn-auth-popup-wrapper .gn-auth-inner{
        min-height: 649px;
    }
    .gn-auth-popup-close{
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .gn-auth-heading-area .gn-title {
        font-size: 24px;
    }
    .gn-auth-heading-area .gn-description {
        margin: 8px 0 0;
        font-size: 16px;
    }
    .gn-auth-register-step,
    .gn-auth-form {
        gap: 24px;
    }
    .gn-social-auth .gn-social-auth-icon{
        min-height: 48px;
    }
    .gn-social-auth .gn-social-auth-icon img {
        max-width: 22px;
        max-height: 22px;
    }
    .gn-social-auth .gn-social-auth-separator-wrapper{
        margin-top: 12px;
    }
    p.gn-auth-action-text {
        font-size: 16px;
    }
    .gn-social-auth .gn-modal-header>.title {
        font-size: 24px;
    }
    .gn-social-auth .gn-modal-header>.desc {
        font-size: 16px;
        margin: 8px 0 0;
    }
    .gn-social-auth .gn-modal-header {
        margin: 0 0 24px;
    }
    .gn-social-auth .gn-modal-footer{
        margin: 24px 0 0;
    }
    .gn-auth-form .gn-social-auth .gn-form-field.gn-field-roles{
        flex-direction: row;
    }
    .gn-auth-form .gn-form-fields .gn-field-role label .gn-description{
        font-size: 14px;
    }
    .gn-auth-form .gn-social-auth .gn-form-fields .gn-field-role label {
        padding: 23px 19px;
    }
}