/* Home Banner */
.home-banner {
    background: linear-gradient(180deg, var(--main-color) 0%, #FEF6B0 100%);
    padding: 204px 0 160px;
}

.home-banner h1 {
    font-size: 72px;
    line-height: 80px;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 24px;
}

.home-banner p {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 0;
}

.home-banner .banner-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 80px;
}

.home-filter-form {
    border: 1px solid #22222233;
    box-shadow: 4px 4px 40px 0px #FDE1001A;
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    max-width: 1143px;
    width: 100%;
    margin: 0 auto;
}

.home-filter-form .filter-item {
    display: flex;
    align-items: center;
    gap: 1px;
}

.home-filter-form .filters-field {
    width: 100%;
    position: relative;
    border-right: 1px solid #A5A5A5;
}

.home-filter-form .filters-field:nth-last-child(2) {
    border-right: 0 !important;
}

.home-filter-form .filters-field input {
    border: 0;
    padding: 15px 15px 15px 39px;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}

.home-filter-form .filters-field input::placeholder {
    font-size: 14px;
    letter-spacing: 0;
}

.home-filter-form .filters-field input:focus {
    box-shadow: none;
    outline: none;
}

.home-filter-form .filters-field i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 20px;
    width: 24px;
    height: 24px;
    color: #A5A5A5;
    position: absolute;
    top: 11px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

.home-filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    border: 0 !important;
}

.home-filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px !important;
    line-height: 36px !important;
    text-align: left !important;
    padding-right: 36px !important;
}

.home-filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px !important;
}

.home-filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    background-position: right 10px center !important;
    background-size: 18px !important;
}

.home-filter-form .select2-container {
    width: 100% !important;
}

.home-filter-form .select2-container--default .select2-selection--single {
    border: 0;
    min-height: 50px;
    padding: 6px 40px 6px 34px;
    display: flex;
    align-items: center;
}

.home-filter-form .select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.home-filter-form .select2-dropdown {
    border: 0 !important;
    box-shadow: 4px 4px 40px 0px #FDE1001A;
}

.home-filter-form span.select2-selection.select2-selection--single {
    min-height: 50px;
}

.home-filter-form .custom_btn {
    border-radius: 8px;
    padding: 13px 15px;
    font-size: 18px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.home-filter-form .custom_btn span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-filter-form .custom_btn span .icon {
    color: #222222;
    height: unset;
    display: flex;
}

.home-banner {
    position: relative;
}

.home-banner .container {
    max-width: 100% !important;
    z-index: 1;
    position: relative;
}

.home-banner .right-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-65%);
    left: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    pointer-events: none;
}

.home-banner .left-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-65%);
    right: 80px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 60px;
    pointer-events: none;
}

.home-banner .right-icon .icon,
.home-banner .left-icon .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner .right-icon .icon img,
.home-banner .left-icon .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(4px 4px 30px #00000024);
}

.home-banner .right-icon .icon.icons-1,
.home-banner .right-icon .icon.icons-3 {
    rotate: -15deg;
    margin-left: 60px;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
}

.home-banner .left-icon .icon.icons-1,
.home-banner .left-icon .icon.icons-3 {
    rotate: 15deg;
    margin-right: 60px;
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.home-banner .left-icon .icon.icons-2,
.home-banner .right-icon .icon.icons-2 {
    -webkit-animation: movers 2s infinite alternate;
    animation: movers 2s infinite alternate;
}

@-webkit-keyframes movers {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10px);
    }
}

@keyframes movers {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10px);
    }
}

.explore-category {
    background: linear-gradient(106.16deg, #FBF1E2 1.36%, rgba(255, 242, 139, 0.04) 53.07%, #FBF1E2 100%);
    padding: 100px 0;
}

.explore-category .container {
    max-width: 1288px;
}

.explore-category .home-section-title {
    max-width: 991px;
    margin: 0 auto 48px;
    width: 100%;
}

.home-section-title .title {
    text-align: center;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.home-section-title p {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 0;
}

.category-item {
    border: 1px solid #D6DDEB;
    box-shadow: 2px 2px 30px 0px #00000014;
    background: #FFFFFF;
    border-radius: 16px;
    height: 100%;
    padding: 31px 20px 45px;
    position: relative;
}

.explore-category-list .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 20px;
}

.category-item .images-box {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E4BCE3;
    margin-right: 32px;
    padding: 15px;
}

.category-item .images-box img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.category-item .category-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

.category-item .category-count {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #7C8493;
    margin-bottom: 0;
}

.category-item .explore-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 20px;
    line-height: 20px;
}

.category-item .explore-link i {
    transition: all 0.3s ease;
    color: #000000;
}

.category-item .explore-link:hover i {
    color: #FDE100;
}

.trusted-companies {
    padding: 100px 0;
}

.trusted-companies .home-section-title {
    margin-bottom: 56px;
}

.get-notified {
    padding: 0 15px 100px;
}

.get-notified-content {
    max-width: 923px;
    width: 100%;
    margin: 0 auto;
    background: #B1DED6 url(../images/notification-bg.png) no-repeat right bottom/cover;
    box-shadow: 2px 2px 11px 0px #0000001A;
    border-radius: 24px;
    padding: 60px 15px 36px;
    position: relative;
    overflow: hidden;
}

.get-notified-content p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.get-notified-content::after {
    content: '';
    width: 163px;
    height: 163px;
    background: url(../images/bordre-box.svg) no-repeat;
    position: absolute;
    top: -80px;
    left: -80px;
    pointer-events: none;
}

.get-notified-content::before {
    content: '';
    width: 148px;
    height: 90px;
    background: url(../images/dot-white.svg) no-repeat;
    position: absolute;
    top: -40px;
    right: -50px;
    pointer-events: none;
}

.get-notified-content .get-notified-form::before {
    content: '';
    width: 148px;
    height: 90px;
    background: url(../images/dot-white.svg) no-repeat;
    position: absolute;
    bottom: -70px;
    left: 16px;
    pointer-events: none;
}

.get-notified-content .title {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    max-width: 772px;
    width: 100%;
    margin: 0 auto 16px;
}

.get-notified-form {
    max-width: 603px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.get-notified-form .form-group {
    margin-bottom: 0;
    width: 100%;
    position: relative;
}

.get-notified-form .form-group input {
    width: 100%;
    padding: 0 16px 0 46px;
    min-height: 56px;
    border: 1px solid #D5DAE1;
    border-radius: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

.get-notified-form .form-group input:focus {
    outline: unset;
}

.get-notified-form .form-group i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 18px;
    color: #A5A5A5;
    line-height: 18px;
}

.get-notified-form .btn {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    box-shadow: 0px 1px 2px 0px #6951FF0D;
    background: #FFFFFF;
    border: 1px solid #ffffff;
    padding: 16px 27px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.get-notified-form .btn:hover {
    background: #FDE100;
    border: 1px solid #FDE100;
    color: #000000;
}

.get-notified-form-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 26px;
}

.get-notified-form-content p {
    margin-bottom: 0;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    font-size: 12px;
    color: red;
}

.popular-jobs-section .home-section-title {
    margin-bottom: 36px;
    padding: 0 100px;
}

.popular-jobs-section {
    padding: 100px 0 80px;
}

.popular-jobs-section .container {
    max-width: 1304px;
}

.popularjobs-slider .slick-slide {
    padding: 20px 10px;
}

.jobs-card-item {
    box-shadow: 2px 2px 30px 0px #00000014;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.jobs-card-item .images-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: fit-content;
    margin: 0 auto 20px;
}

.jobs-card-item .images-box img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.jobs-card-item .platform-box {
    background: #F9F9F9;
    border-radius: 16px;
    padding: 15px 10px;
    margin-bottom: 20px;
}

.jobs-card-item .platform-box span {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: #7C8493;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.jobs-card-item .platform-box p {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}

.jobs-card-item .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #222222;
}

.jobs-card-item .info-item .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22222233;
    font-size: 20px;
    line-height: 20px;
}

.jobs-card-item .custom_btn {
    display: flex;
    align-items: center;
    width: 100%;
}

.powering-careers-content .custom_btn {
    display: flex;
    align-items: center;
}

.jobs-card-item .custom_btn span,
.powering-careers-content .custom_btn span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 24px;
}

.jobs-card-item .custom_btn span .icon,
.powering-careers-content .custom_btn span .icon {
    height: unset;
    color: #222222;
}

.jobs-slider-list {
    position: relative;
    margin: 0 -10px;
}

.jobs-slider-list .swiper-slide {
    padding: 20px 10px;
}

.jobs-slider-list .slider-icons,
.testimonial-section .slider-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: -80px;
    right: 0;
}

.testimonial-section .slider-icons {
    bottom: 50px;
    top: unset;
}

.jobs-slider-list .slider-icons button,
.testimonial-section .slider-icons button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FDE100;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.popularjobs-slider {
    margin: 0 -10px !important;
}

.testimonial-section {
    background: #FFFBD9;
    padding: 100px 0 50px;
}

.testimonial-section .home-section-title {
    padding: 0 100px 57px;
}

.testimonial-slider .swiper-slide {
    padding: 60px 0;
}

.testimonial-card {
    padding: 40px 24px;
    border: 1px solid #FFFFFF03;
    box-shadow: 10px 10px 60px 2px #00000024;
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-card .user-image {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    margin: -100px auto 16px;
}

.testimonial-card .user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card .testimonial-content .icon-img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.testimonial-card .testimonial-content .user-name {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin-bottom: 16px;
}

.testimonial-card .testimonial-content .testimonial-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #757575;
}

.testimonial-card .testimonial-content .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.testimonial-card .testimonial-content .stars i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB22C;
    font-size: 20px;
    line-height: 20px;
}

.testimonial-section .container {
    position: relative;
}


.testimonial-pagination {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-pagination .swiper-pagination-bullet {
    padding: 0;
    width: 10px;
    height: 10px;
    opacity: 1;
    border-radius: 50%;
    background: #EEECE6;
    transition: all 0.3s ease-in-out;
}


.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background: #FDE100;
}

.testimonial-slider .slick-dots li button::before {
    display: none;
}

.powering-careers-section {
    padding: 80px 0;
}

.powering-careers-section .container {
    max-width: 1304px;
}

.powering-careers-image {
    margin-right: 38px;
    position: relative;
    padding-left: 52px;
}

.powering-careers-image::before {
    content: '';
    width: 68px;
    height: 125px;
    background: url(../images/dots-icon.svg) no-repeat;
    position: absolute;
    top: 0;
    right: 50px;
    pointer-events: none;
}

.powering-careers-image::after {
    content: '';
    width: 68px;
    height: 125px;
    background: url(../images/dots-icon.svg) no-repeat;
    position: absolute;
    left: 0;
    bottom: 10px;
    pointer-events: none;
}

.helping-box {
    padding: 12px;
    padding-right: 14px;
    background: #ffffff;
    max-width: 265px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 4px 4px 40px 0px #00000026;
    position: absolute;
    top: 16px;
    right: 0;
    z-index: 1;
}

.helping-box-one {
    max-width: 320px;
    top: unset;
    bottom: 40px;
    right: unset;
    left: 0;
}

.helping-box .icon {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    background: #FDE100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
}

.helping-box .content {
    width: 100%;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.powering-careers-content .title {
    text-align: left;
    margin-bottom: 24px;
}

.powering-careers-content p {
    text-align: left;
    margin-bottom: 24px;
}

.new-footer {
    /* background: linear-gradient(180deg, #FBFBFB 0%, #FFFBD9 100%); */
    background: linear-gradient(0deg, var(--main-color) 0%, #FEF6B0 100%);
    ;
    padding: 40px 0;
}

.new-footer .container {
    max-width: 1304px;
    width: 100%;
}

.new-footer .footer-logo {
    width: 185px;
    display: flex;
}

.new-footer .footer-logo img {
    width: 100%;
}

.new-footer .footer-menu {
    margin-bottom: 0;
    line-height: unset;
    gap: 24px;
}

.new-footer .footer-menu li {
    margin-bottom: 0;
}

.new-footer .footer-menu li .footer-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    text-decoration: underline;
    color: #000000;
}

.new-footer .social_media_link {
    display: flex;
    align-items: center;
    gap: 16px;
}

.new-footer .social_media_link a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
    border-radius: 50%;
    background: #FDE100;
}

.new-footer .social_media_link a i {
    height: unset;
    color: #222222;
    display: flex;
    font-size: 16px;
    line-height: 16px;
}

.footer-copyright {
    padding-top: 33px;
    border-top: 1px solid #222222;
    margin-top: 36px;
}

.footer-copyright p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
}

.marquee-slider .slick-slide {
    padding: 0 24px;
    min-height: 72px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.marquee-slider .slick-slide::before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(41, 129, 196, 0) 0%, #2981C4 50%, rgba(41, 129, 196, 0) 100%);
}

.marquee-slider .logo-box {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-slider .logo-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.trusted-companies .marquee-slider-list {
    margin-top: 40px;
}

.marquee-slider {
    position: relative;
}

.marquee-slider::before {
    content: '';
    width: 280px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.marquee-slider::after {
    content: '';
    width: 280px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.location-suggestions-home {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #fde100;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 4px 4px 40px 0px #FDE1001A;
    z-index: 1000;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    scrollbar-color: #FDE100 transparent;
}

.location-suggestions-home .suggestion-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
