/*@import url('/assets/css/variables.css');*/
@import './variables.css';

/* GENERAL STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ft-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    background-color: rgba(243, 246, 250, 1);
}

a {
    text-decoration: none;
    color: #1B2934;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
p {
    margin: 0;
}

/* General Classes */

.page {
    position: relative;
    margin-top: 2rem;
}

h1 {
    font-family: var(--ft-primary);
    font-weight: 700;
    font-size: 2.75rem;
    margin: 0;
    line-height: 110%;
}

h2 {
    font-family: var(--ft-primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    line-height: 110%;
}

h3 {
    font-family: var(--ft-primary);
    font-weight: 600;
    font-size: 1.375rem;
    margin: 0;
    line-height: 130%;
}

p {
    font-family: var(--ft-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 130%;
}

.bold {
    font-weight: 800;
}

.menu-text {
    font-family: var(--ft-primary);
    font-weight: 400;
    font-size: 1rem;
    line-height: 110%;
}

.caption {
    font-family: var(--ft-primary);
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 130%;
}

/* Buttons */
.btn-primary {
    /*width: fit-content;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    min-width: 110px;
    max-width: 140px;
    border: 1px solid var(--btn-color);
    font-weight: 500;
    background-color: var(--btn-color);
    color: var(--white);
    border-radius: var(--border-radius-1);
    transition: .5s ease-out;
}

.btn-primary:hover {
    background-color: rgba(27, 41, 52, 0.8);
    border: 1px solid var(--btn-color);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-1);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    transition: .5s ease-out;
    width: 110px;

}

.btn-secondary:hover {
    background-color: rgba(27, 41, 52, 0.8);
    border: 1px solid rgba(27, 41, 52, 0.8);
    color: var(--white);
}

.btn-find {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 2.5rem;
    border: 1px solid #8D0100;
    font-weight: 500;
    background-color: #8D0100;
    color: white;
    border-radius: var(--border-radius-1);
    transition: .5s ease-out;
}

.btn-find:hover {
    background-color: white;
    color: #8D0100;
    border: 1px solid #8D0100;

}

.btn-login {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.8rem;
    border: 1px solid white;
    font-weight: 500;
    background-color: white;
    color: #1B2934;
    border-radius: var(--border-radius-1);
    transition: .5s ease-out;
}

.btn-login:hover {
    background-color: rgba(27, 41, 52, 0.8);
    color: white;
    border: 1px solid #fff;

}

.btn-register {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border: 1px solid white;
    font-weight: 500;
    background-color: #1B2934;
    color: #fff;
    border-radius: var(--border-radius-1);
    transition: .5s ease-out;
}

.btn-register:hover {
    background-color: white;
    color: #1B2934;
}

/* Scrollbar */
::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0.625rem;
}

::-webkit-scrollbar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 0.625rem;
    background-color: var(--btn-color);
}

.inner-wrapper {
    overflow: hidden;
}


/*
** --- Navigation
*/
header {
    padding: 0.625rem 0;
    background-color: var(--white);
}

.auth-content {
    display: flex;
    /* display: none;  */
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.menu-link {
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: -1.375rem;
    left: 0;
    width: 0;
    height: 6px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: var(--red);
    transition: .5s ease-in-out;
}

.menu-link.active::before,
.menu-link:hover::before {
    width: 100%;
}

.dropdown.menu-link::before {
    top: -0.75rem !important;
}

.auth-buttons {
    display: flex;
    /*display: none;*/
    gap: 1.25rem;
}

.auth-content:last-of-type {
    justify-content: end;
}

.user-menu {
    gap: 1.5rem;
}

.notification-box {
    cursor: pointer;
}

.notification-box .rounded-circle {
    background-color: var(--red);
    width: 0.5rem;
    height: 0.5rem;
    top: 1px;
    right: 1px;
}

.dropdown .rounded-circle {
    width: 2.5rem;
    height: 2.5rem;
}

.user-menu .dropdown-menu {
    padding: 1.5rem;
    min-width: 12.5rem;
    border: none;
}

.profile-top {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.user-menu .dropdown-menu .rounded-circle {
    width: 1.5rem;
    height: 1.5rem;
}

.user-menu .dropdown-menu .menu-text {
    font-size: 1rem;
    line-height: 110%;
}

.profile-top i.bi-chevron-down {
    transform: rotate(-90deg);
}

.dropdown-menu .dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    font-weight: 600;
    transition: 0.5s ease-in-out;
}

.dropdown-menu .dropdown-link:hover {
    background-color: transparent;
    color: var(--red);
}

.dropdown-menu .dropdown-link:active {
    color: var(--red);
}

.dropdown-menu .dropdown-item:not(:first-of-type) {
    margin-top: 2rem;
}

.dropdown-item {
    padding: 0 !important;
}

.dropdown-item.active {
    color: var(--black);
    background-color: transparent;
}

.dropdown-item:hover {
    background-color: transparent;
}

.logout-item {
    padding-top: 1.375rem;
    margin-top: 2rem;
    border-top: 1px solid var(--lightgray);
}

.dropdown-overlay,
.dropdown-overlay-mobile {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Sidebar */
.wishlist-close {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.wishlist-close p {
    font-size: 1.25rem;
    font-weight: 600;
}

.wishlistMenu {
    position: fixed;
    right: 0;
    height: 100%;
    width: 1000px;
    background: rgba(243, 246, 250, 1);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.10);
    z-index: 150;
    transform: translate(100%, 0);
    transition: all .3s cubic-bezier(.29, .39, .68, .53);
    -webkit-transition: all .3s cubic-bezier(.29, .39, .68, .53);
    overflow: auto;
}

.openWish .wishlistMenu {
    transform: translate(0, 0);
    transition: all .3s cubic-bezier(.29, .39, .68, .53);
    -webkit-transition: all .3s cubic-bezier(.29, .39, .68, .53);
}

body.openWish {
    overflow: hidden;
}

.wishlist-content {
    position: relative;
    z-index: 100;
    padding: 2.5rem 3.75rem;
}

.wishlist-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
    padding-top: 1.5rem;
}

.wishlist_overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
}

.openWish .wishlist_overlay {
    display: block;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.15rem;
}

.card-bottom .btn-primary {
    margin-top: 0 !important;
}

.card-bottom .bi-heart-fill {
    font-size: 1.75rem;
    color: var(--btn-color);
}

/*
** --- Hero
*/
.profile-message {
    padding-bottom: 1.5rem;
}

.hero form {
    border-bottom: 1px solid var(--lightgray);
    padding-bottom: 1.85rem;
    margin-bottom: 1.85rem;
}

.search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: var(--border-radius-1);
    padding: 0.65rem;
    border: 1px solid var(--lightgray);
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
}

.hero-titles h3 {
    margin: 0.65rem 0 1rem;
    font-weight: 300;
}

.hero .row .col-md-9,
.hero .row .col-md-3,
.sorting-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filters-boxes {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.dropdown-toggle {
    background-color: var(--white);
    border: 1px solid var(--lightgray);
    padding: 0.625rem 0.875rem;
}

.dropdown-menu {
    min-width: 100%;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-menu li {
    /* padding-left: 0.5rem; */
}

.dropdown-toggle::after {
    border: none;
    /*content: url('/assets/images/icons/arrow-down.svg');*/
    content: url('../../assets/images/icons/arrow-down.svg');
}

.hiden-title {
    font-weight: 300;
}

.sorting-box p {
    min-width: 65px;
}

/* --- Job Card --- */
.jobs-offers-container {
    margin-top: 3.15rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    min-height: 350px;
    display: block;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--lightgray);
    border-radius: var(--border-radius-1);
}

.job-card p {
    font-size: 1rem;
    color: #333;
    margin-top: 0.5rem;
}

.job-card p.caption {
    /*color: rgba(158, 158, 158, 1);*/
    font-size: .7rem;
    color: #5d5d5d;
    margin-bottom: 5px;
}

.clickable-card {
    cursor: pointer;
}

.categories {
    margin: 0.65rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.category {
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-1);
}

.gray {
    background-color: rgba(233, 232, 235, 1);
}

.blue {
    background-color: rgba(125, 177, 212, 0.2);
}

.orange {
    background-color: rgba(254, 235, 200, 1);
    color: rgba(123, 52, 30, 1);
}

.job-card .btn-primary {
    margin-top: 3.15rem;
}

.recomanded-jobs {
    border-bottom: 1px solid var(--lightgray);
    padding-bottom: 1.85rem;
    margin-bottom: 1.85rem;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-link,
.disabled > .page-link, .page-link.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--border-radius-1);
    background-color: var(--white);
    color: var(--black);
    border: 1px solid rgba(158, 158, 158, 1);
}

.page-link:hover,
.active > .page-link, .page-link.active {
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    background-color: var(--white);
}

.page-link-prev .page-link {
    border: 1px solid rgba(223, 227, 232, 1);
}

.page-link-prev .page-link svg path {
    fill: rgba(158, 158, 158, 1);
}

.page-link-prev {
    margin-right: 15px;
}

.page-link-prev svg {
    rotate: 180deg;
}

.page-link-next {
    margin-left: 15px;
}

.page-link-next .page-link {
    border: 1px solid var(--btn-color);
    background-color: var(--btn-color);
}

.page-link-next .page-link svg path {
    fill: var(--white)
}

/*
** --- Footer
*/
footer {
    padding: 3.75rem 0 1.875rem;
    background-color: var(--white);
}

.footer-inner {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*gap: 1.5rem;*/
    background-color: #1B2934;
    border-radius: 1.25rem;
    color: var(--white);
    padding: 4rem 2.5rem 2.5rem;
}

.footer_hr {
    border-top: 1px solid white;
    opacity: 1;
    margin: 2rem 0;
}

.footer-inner p {
    color: rgba(158, 158, 158, 1);
    margin-top: 1rem;
}

.footer-logo img {
    width: 150px;
}

.footer_slogan {
    font-size: 50px;
}

.footer-inner h3 {
    text-transform: uppercase;
    color: rgba(158, 158, 158, 1);
    margin-bottom: 1.5rem;
}

.footer-inner ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-inner ul a {
    transition: .5s ease-in-out;
}

.footer-inner ul a:hover {
    color: var(--red);
}

.footer-float {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1.25rem 0;
    background-color: var(--white);
    justify-content: center !important;
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.footer-float a {
    font-weight: 700;
}

.footer-float .menu-link::before {
    top: auto;
    bottom: -1.125rem;
}

.footer_help {
    display: flex;
    gap: 50px;
    text-align: center;
    /*justify-content: center;*/
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: .7rem;
}

.footer_email {
    padding-top: .7rem;
}

.footer_help a {
    color: white;
    font-weight: 500;

}

/*
** --- Job Detail
*/
.job-detail-page {
    padding-bottom: 1.875rem;
}

.job-container {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
}

.job-detail-page p.caption {
    color: rgba(158, 158, 158, 1);
    margin-bottom: 5px;
}

.job-container h2 {
    margin: 2.5rem 0 2rem;
}

.job-details-box {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.job-detail-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lg-box {
    margin-top: 1.5rem;
}

.lg-box .job-detail-box {
    margin-bottom: 0.75rem;
}

.lg-box ul {
    padding-left: 1.5rem;
}

.lg-box ul li {
    list-style: disc;
}

.job-container .btn-primary,
.job-info-sidebar .btn-primary {
    margin-top: 2rem;
}

.job-info-sidebar {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    height: 100%;
}

.job-info-sidebar h2 {
    margin-bottom: 2rem;
}

.job-info-sidebar .job-detail-box {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(235, 235, 235, 1);
}

.job-info-sidebar .job-detail-box:last-of-type {
    border-bottom: none;
}

/* Application form */
.app-title {
    margin-bottom: 1rem;
}

.application-categories .category {
    font-size: 1.375rem;
}

.application-form {
    display: flex;
    flex-direction: column;
}

.form-box h2 {
    margin-top: 3.25rem;
    margin-bottom: 2.5rem;
}

.application-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.application-inputs .float-left {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.application-inputs .float-left input,
.application-inputs .float-left select,
.application-inputs textarea {
    width: 100%;
    padding: 0.75rem 0.625rem;
    color: var(--black);
    /*background-color: transparent;*/
    border: 1px solid rgba(233, 232, 235, 1);
    border-radius: 0.625rem;
    outline: none;
}

.application-inputs .float-left input::placeholder,
.application-inputs textarea::placeholder {
    color: rgba(158, 158, 158, 1);
}

.application-inputs textarea {
    resize: none;
}

.float-birth {
    grid-column: span 2;
}

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

.ss-main {
    width: 100%;
    padding: 0.75rem 0.625rem;
    border: 1px solid rgba(233, 232, 235, 1);
    /*background: transparent;*/
    border-radius: 0.625rem;
    outline: none;
}

.ss-main:focus {
    box-shadow: none;
}

.ss-main .ss-arrow path {
    stroke: var(--black);
}

.ss-content {
    border: 1px solid rgba(125, 177, 212, 0.5);
    border-top: none;
}

.ss-main .ss-values .ss-single {
    font-size: 1rem;
    color: #1B2934
}

.ss-main .ss-values .ss-placeholder {
    color: #1B2934;
}

.ss-content .ss-search input:focus {
    box-shadow: none;
    border: 1px solid rgba(125, 177, 212, 0.5);
}

.ss-content .ss-list .ss-option:not(.ss-disabled):hover,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
    background-color: rgba(125, 177, 212, 0.5) !important;
}

.application-form button {
    border-radius: 0.625rem;
    margin-top: 2.25em;
    padding: 0.875rem 1.5rem;
    align-self: flex-end;
}

/* Account Page */
.account-page {
    padding-bottom: 1.875rem;
}

.account-page .job-info-sidebar {
    padding-bottom: 8.125rem;
}

.account-sidebar .dropdown-menu {
    position: static;
    display: block;
    background-color: transparent;
    border: none;
}

.account-sidebar .profile-top {
    align-items: center;
}

.account-sidebar .dropdown-menu ul li {
    padding-left: 0;
}

.account-sidebar .dropdown-menu ul li a {
    position: relative;
    padding-bottom: 1.375rem;
    padding-left: 0;

    border-bottom: 1px solid var(--lightgray);
}

.percent-circle {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    font-size: 8px;
    border-radius: 50%;
    background-color: rgb(211, 211, 212);
    display: flex;
    align-items: center;
    justify-content: center;
}

.percent-circle.filled {
    background-color: rgba(17, 135, 6, 0.8);
    color: var(--white);
}

.account-sidebar .logout-item {
    border: none !important;
    padding-top: 0;
}

.account-sidebar .dropdown-menu ul li.active > a {
    border-bottom: 2px solid var(--red);
}

.account-sidebar .dropdown-menu ul > li {
    margin: 0;
}

.account-sidebar .dropdown-menu ul li:first-of-type a {
    padding-bottom: 0;
    border-bottom: none;
}

.sub-menu li a {
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: .8rem !important;
    /*margin-left: 1rem;*/
}

.sub-menu li a {
    position: relative;
    padding: .5rem 1.8rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(243, 246, 250, 1);
    border-radius: 0.625rem;
    transition: 0.5s ease-in-out;
}

.sub-menu li a:hover {
    color: var(--red);
}

.sub-menu li a.active {
    /*background-color: rgba(17, 135, 6, 0.2);*/
    border-bottom: 2px solid var(--red) !important;
}

.account-page .job-container {
    height: 100%;
}

.account-page .job-container h2 {
    margin: 0;
}

.account-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Change Passwrd */
.password-form h2 {
    margin-bottom: 1.5rem !important;
}

.password-form h2:last-of-type {
    margin-top: 2.5rem !important;
}

.password-form .application-inputs {
    grid-template-columns: repeat(1, 420px);
}

.password-imputs {
    margin-bottom: 6rem;
}

.toggle-password {
    position: absolute;
    right: 0.625rem;
    bottom: 15px;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.account-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: end;
}

.account-buttons button {
    margin: 0 !important;
}

/* Personal Details */
.personal-form {
    gap: 2.5rem;
}

.profile-completed {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.green {
    color: rgba(17, 135, 6, 1);
}

.profile-picture-update {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-img {
    width: 7.5rem;
    height: 7.5rem;
    object-fit: cover;
    border-radius: var(--border-rounded);
}

.profile-img-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.625rem;
}

input[type=file] {
    border: 1px solid var(--lightgray);
    background-color: #fff;
    transition: 0.25s ease-in-out;
    border-radius: var(--border-radius-1);
}

input[type=file]::file-selector-button {
    padding: 0.75rem 1.5em;
    border-width: 0;
    background-color: var(--lightgray);
    color: rgba(64, 64, 64, 1);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    margin-right: 1em;
}

input[type=file]:hover {
    border-color: rgba(125, 177, 212, 0.2);
}

input[type=file]:hover::file-selector-button {
    background-color: rgba(125, 177, 212, 0.2);
}

.personal-form .application-inputs {
    grid-template-columns: repeat(2, 1fr);
}

.upload-files {
    margin: 1.5rem 0;
}

.disabled {
    color: rgba(158, 158, 158, 1);
}

.file-box {
    display: flex;
    align-items: center;
    gap: 3.75rem;
}

.file-check {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
}

/* Payslips */
.payslips-container {
    padding: 1.5rem 0;
}

.payslips-container .account-title {
    padding: 0 1.5rem;
}

table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

tbody tr:nth-child(odd) {
    background-color: rgba(233, 232, 235, 1);
}

table th,
table td {
    padding: 0.625rem;
    color: rgba(64, 64, 64, 1);
    word-wrap: break-word;
}

table th:first-of-type,
table td:first-of-type {
    padding-left: 1.5rem;
}

table th:not(:first-of-type),
table td:not(:first-of-type) {
    text-align: center;
}

thead th {
    position: relative;
    padding-bottom: 3.75rem;
    color: rgba(158, 158, 158, 1);
}

thead th:after {
    position: absolute;
    content: '';
    top: 52px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--lightgray);
}

thead th:first-of-type::after {
    width: 90%;
    left: auto;
    right: 0;
}

thead th:last-of-type::after {
    width: 90%;
}

/* Contracts */
.contracts-form {
    padding: 0 1.5rem 1.75rem;
}

.contracts-form .filters-boxes {
    grid-template-columns: repeat(1, 1fr);
}

.contracts-table thead th {
    padding-bottom: 2.5rem;
}

.contracts-table thead th:after {
    top: 70px;
}

/* Timesheet */
.group-inputs {
    position: relative;
}

.group-inputs label {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--btn-color);
    color: var(--white);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: .3rem .5rem;
    pointer-events: none;
}

.group-inputs input {
    width: 100%;
    font-size: 12px;
    padding: .5rem;
    border: none;
    border-radius: 6px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;

}

/* Complete steps */
.steps-container {
    height: 100% !important;
}

.steps-container .account-title {
    align-items: start;
}

.steps-title {
    width: 430px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    width: 32rem;
    margin: 2.5rem auto 6.25rem;
    position: relative;
}

.progress-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(161, 174, 190, 1);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: rgba(17, 135, 6, 1);
    width: 0;
    transform: translateY(-50%);
    transition: width 0.4s ease-in-out;
    z-index: 3;
}

.step-container {
    position: relative;
}

.step,
.step.completed::after {
    /*position: relative;*/
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.875rem;
    border: 2px solid rgba(161, 174, 190, 1);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--btn-color);
    position: relative;
    transition: background 0.3s;
    z-index: 5;
}

.step.completed::after {
    position: absolute;
    content: url('../../assets/images/icons/check-single.svg');
    color: var(--white);
    background-color: rgba(17, 135, 6, 1);
    border: 2px solid rgba(17, 135, 6, 1);
    font-size: 1.25rem;
}

.step.active + .step-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--black);
}

.step.active.step.completed + .step-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(158, 158, 158, 1);
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(158, 158, 158, 1);
}

button:disabled {
    background: #ccc;
}

.error-message {
    color: red;
    font-size: 0.75rem;
    display: none;
    margin-top: 5px;
}

.file-inputs {
    grid-template-columns: repeat(1, 420px);
}

.file-inputs input[type=file] {
    padding: 0 !important;
}

/* Policy */
.policy-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.policy-text ul,
.policy-text ol {
    padding-left: 1.5rem;
}

.policy-text ul li {
    list-style: disc;
}

.policy-text ol li {
    list-style: decimal;
}

/* Thanks Page */
.thanks-page {
    margin: 11rem 0 11rem;
    text-align: center;
}

.thanks-page h1 {
    margin-bottom: 1rem;
}

.thanks-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3.75rem 0 1.875rem;
}

.thanks-buttons button,
.thanks-buttons a {
    width: 270px;
}

.thanks-page .policy-agrred a {
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .job-card {
        min-height: 400px;
    }
}

@media (max-width: 840px) {
    .job-card {
        min-height: 410px;
    }
}

@media (max-width: 767px) {
    .job-card {
        min-height: 350px;
    }
}

.text-muted {
    margin-right: 10px;
}

/*
** Cookies Notification
*/
.notification-cookies {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 25px;
    z-index: 99;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.notification-cookies .row {
    display: flex;
    align-items: center;
}

@-webkit-keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .notification-cookies {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .notification-cookies {
        width: 90%;
    }

    .notification-cookies button {
        margin-top: 1.5rem;
    }
}

.recommended_card {
    min-height: 380px;
}

@media (max-width: 1199px) {
    .recommended_card {
        min-height: 470px;
    }
}

@media (max-width: 767px) {
    .recommended_card {
        min-height: 370px;
    }
}

.disabled-link {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.autocomplete-suggestions {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 1000;
    list-style: none;
    padding-left: 0;
    margin-top: 80px;
}

.autocomplete-suggestions li {
    padding: 8px;
    cursor: pointer;
}

.autocomplete-suggestions li:hover {
    background-color: #f0f0f0;
}


@media (max-width: 991px) {
    .filter-form {
        margin-bottom: .925rem;
    }
}

@media (max-width: 540px) {
    .job-filter-form {
        width: 90%;
        margin: auto;
    }
}

.text_start {
    text-align: start;
}

.text_center {
    text-align: center;
}

.text_end {
    text-align: end;
}

/* Banner */
.banner {
    margin-top: 6.275rem;
    margin-bottom: 6.275rem;
    text-align: center;
}

.banner_title {
    font-weight: 800;
    font-size: 80px;
    line-height: 100%;
    text-align: center;
    color: #1B2934;
}

.banner_title span {
    color: #8D0100;
}

.banner_subtitle {
    font-weight: 800;
    font-size: 36px;
    text-align: center;
    color: #1B2934;
    margin-top: 1.3rem;
}

.banner_text {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #1B2934;
    max-width: 600px;
    margin: 1.3rem auto;
}

.btn-banner {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.275rem 5.5rem;
    border: 1px solid #8D0100;
    font-weight: 500;
    background-color: #8D0100;
    color: var(--white);
    border-radius: 3px;
    transition: .5s ease-out;
    margin: 0 auto;

}

.btn-banner:hover {
    background-color: #1B2934;
    border: 1px solid #1B2934;
}

.btn-container {
    text-align: right;
}

.btn-home {
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 1.275rem 3.5rem;
    border: 1px solid #8D0100;
    font-weight: 500;
    background-color: #8D0100;
    color: var(--white);
    border-radius: 3px;
    transition: .5s ease-out;
}

.btn-home:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #8D0100;
}


.btn-one {
    padding: 1.275rem .5rem;
    border: 1px solid #8D0100;
    font-weight: 500;
    background-color: #8D0100;
    color: var(--white);
    border-radius: 3px;
    transition: .5s ease-out;
    width: 100%;
    margin: .5rem .5rem;
}

.btn-one:hover {
    background-color: #1B2934;
    border: 1px solid #1B2934;
    color: #fff;
}

.btn-about {
    padding: 1.275rem .5rem;
    border: 1px solid #1B2934;
    font-weight: 500;
    background-color: #1B2934;
    color: var(--white);
    border-radius: 3px;
    transition: .5s ease-out;
    width: 100%;
    margin: .5rem .5rem;
}

.btn-about:hover {
    background-color: #8D0100;
    border: 1px solid #8D0100;
    color: white;
}

/*
** cta
*/
.cta_block {
    position: relative;
}

.cta_img {
    width: 100%;
    display: block;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cta_statistic {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.statistic_body {
    text-align: center;
    border-right: 1px solid #fff;
    margin-bottom: 1rem;
}

.statistic_body:last-child {
    border-right: none;
}

.statistic_title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 100%;
    color: white;
    margin-bottom: 5px;
}

.statistic_text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #fff;
    margin: 0 auto;

}

.play-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(128, 0, 0, 0.8);
    border: none;
    box-shadow: 0 0 0 5px rgba(75, 75, 77, 0.7);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
    font-size: 40px;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    cursor: pointer;
}

/*
** Slider
*/
.logo-slider {
    background-color: #fff;
    padding: 25px;
}

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    background-color: white;
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item img {
    max-width: 180px;
    height: 100%;
    object-fit: contain;
}

.slider .list .item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 30s linear infinite;
    animation-delay: calc(
        (30s / var(--quantity)) * (var(--position) - 5)
    );
}

.slider .list:hover .item {
    animation-play-state: paused !important;
}


@keyframes autoRun {
    from {
        left: 100%;
    }
    to {
        left: calc(var(--width) * -1);
    }
}

/*Why choose us section*/
.why_choose_us {
    padding: 5rem 0;
}

.section_title {
    font-weight: 800;
    font-size: 55px;
    line-height: 100%;
    text-align: start;
    color: #1B2934;
}

.section_title span {
    color: #8D0100;
}

.section_text {
    margin: 1.3rem 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #1B2934;
}

.why_card {
    background-color: white;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 1.3rem;
}

.card_icon {
    background-color: #8D0100;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.card_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    margin-top: 1.3rem;
    color: #1B2934;
}

.card_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-top: 1.3rem;
    color: #1B2934;
}

.why-choose-row {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.why-left {
    position: sticky;
    top: 2rem;
    height: 25vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.why-right {
    height: 100%;
    overflow-y: auto;
}


/*Works*/
.works {
    padding: 5rem 0;
    background-color: white;
}

.work_block {
    max-width: 500px;
    margin: 0 auto;
    color: #1B2934
}

.work_card {
    display: grid;
    height: 380px;
    background-color: #F3F6FA;
    padding: 30px;
    /*margin-bottom: 1.3rem;*/
    border-radius: 30px;
    /*transition: all 0.3s ease-in-out;*/
    transition: .5s ease-out;

}

.word_circle {
    background-color: #8D0100;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 3rem;
}

.work_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #1B2934;
    margin-bottom: 1.3rem;
}

.work_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-top: 1.3rem;
    color: #1B2934;
}

.work_card:hover {
    background-color: #8D0100;
}

.work_card:hover .work_title,
.work_card:hover .work_text {
    color: white;
}

.work_card:hover .word_circle {
    background-color: white;
    color: #1B2934;
}

/*Refer*/
.refer {
    padding: 5rem 0;
    background-color: white;
}

.ref_img img {
    width: 100%;
    border-radius: 20px;
}

.block_card {
    background-color: #F3F6FA;
    border-radius: 30px;
    padding: 25px;
    margin-bottom: 1rem;
}

.refer_subtitle {
    color: #1B2934;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2rem;
}

.refer_block {
    padding: 20px 10px;
    border-bottom: 1px solid #F3F6FA;
    display: flex;
    gap: 10px
}

.re_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #1B2934;
}

.block_icon {
    background-color: #8D0100;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 1.3rem;
}

.block_icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.block_card h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #1B2934;
}

.block_card h6 span {
    color: #8D0100;
}

.refer .btn-banner {
    margin-left: 0 !important;
    margin-right: auto !important;
    display: inline-flex;
    padding: 1.275rem 3.5rem;
}

.ref-row-equal {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.ref-row-equal > .col-lg-5,
.ref-row-equal > .col-lg-7 {
    display: flex;
    flex-direction: column;
}

.ref_main {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 1.3rem;
    max-height: 780px;
}

.ref_main_2 {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.ref_main2 {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/*Insights*/
.insights {
    padding: 5rem 0;
}

.insights_title {
    color: #1B2934;
    font-size: 36px;
}

/*FAQ*/


/*
** Faq
*/
.faq {
    padding: 5rem 0;
    background-color: white;
}

.accordion-button {
    font-weight: 700;
    font-size: 18px;
    background-color: transparent;
    color: #1B2934;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: #1B2934;
}

.accordion-body {
    font-size: 16px;
    color: #333;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
}

/*Review*/
.reviews-section,
.jobs {
    padding: 5rem 0;
}

.review-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start !important;
    gap: 20px;
    background-color: white;
    border-radius: 30px;
    padding: 30px;
}

.review-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviews-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-text h3 {
    font-weight: 500;
    font-size: 16px;
    padding-top: 10px;
}

.review-scroll {
    width: 100%;
    height: var(--height);
    overflow: hidden;
}

.review-scroll .list {
    display: flex;
    width: 100%;
    min-width: calc(495px * var(--quantity));
    position: relative;
}

.review-scroll .list .item {
    display: flex;
    align-items: center;
    gap: 25px;
    width: var(--width);
    height: var(--height);
    font-size: 14px;
    position: absolute;
    left: 100%;
    animation: autoRun 180s linear infinite;
    animation-delay: calc((180s / var(--quantity)) * (var(--position) - 6));
}

.review-reverse .list .item {
    animation-direction: reverse;
}

.review-scroll .list:hover .item {
    animation-play-state: paused !important;
}


@keyframes autoRun {
    from {
        left: 100%;
    }
    to {
        left: calc(var(--width) * -1);
    }
}


.business_img {
    width: 100%;
    border-radius: 20px;
}

.diff {
    padding: 5rem 0;
}


.diff_table {
    margin-top: 3rem;
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.diff_table thead.diff_header {
    background: #f5f7fa;
}

.diff_table th {
    font-weight: bold;
    padding: 12px;
    text-align: left;
}

.diff_table th {
    font-size: 22px;
    font-weight: 700;
}

.diff_table th.th_feature {
    color: #1B2934;
}

.diff_table th.th_dayger {
    color: #2F9E00;
}

.diff_table th.th_other {
    color: #8D0100;
}

.diff_table thead th::after {
    content: none !important;
    display: none !important;
}

.diff_table td {
    border-top: 1px solid #ddd;
    padding: 1.2rem;
    text-align: left;
}

.diff_table .main_column {
    font-weight: bold;
}

.diff_table td img {
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.diff_table tr,
.diff_table tbody tr,
.diff_table tbody.diff_body tr {
    background: transparent !important;
}

.diff_table tbody.diff_body tr:nth-child(even) td {
    background: transparent !important;
}


@media screen and (max-width: 991px) {
    .diff_table thead.diff_header {
        display: none;
    }

    .diff_table,
    .diff_table tbody.diff_body,
    .diff_table tr,
    .diff_table td {
        display: block;
        width: 100%;
    }

    .diff_table tr {
        margin-bottom: 15px;
        /*border: 1px solid #ddd;*/
        background: #fff;
        padding: 10px;
    }

    .diff_table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .diff_table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        font-weight: bold;
        text-align: left;
        color: #1B2934;
        vertical-align: middle;
    }

    .diff_table td img {
        display: inline-block;
        vertical-align: middle;
    }

    .diff_table td[data-label="Dayger"],
    .diff_table td[data-label="Traditional Agencies"] {
        text-align: right;
    }
}

.active-link {
    color: #8D0100
}

.about_title {
    font-size: 80px;
}

.about_title span {
    color: #8D0100;
}

.content_block {
    margin-right: 4rem;
}

.about_img {
    width: 100%;
    border-radius: 20px;
}

.number_block .number {
    font-size: 80px;
    color: #8D0100;
    font-weight: 900;
}

.number_block .symbol {
    font-size: 30px;
    color: #8D0100;
    font-weight: 900;
}

.team {
    padding: 5rem 0;
}

.tea-img {
    width: 100%;
    border-radius: 20px;
    height: 430px;
    object-fit: cover;
}

.team-card .name {
    margin-top: .8rem;
    font-size: 22px;
    font-weight: 700;
}

.team-card .position {
    margin-top: .6rem;
    font-size: 18px;
    font-weight: 400;
}

.contacts {
    padding: 5rem 0;
    background-color: white;
}

.contacts-img {
    width: 100%;
    border-radius: 20px;
}

.contact-form {
    background-color: #f3f6fa;
    padding: 20px 30px;
    border-radius: 30px;
    min-height: 500px;
}

.form-input {
    display: block;
}

.form-block label {
    margin-bottom: .5rem;
}

.form-block .form-input {
    width: 100%;
    border: none;
    padding: 10px 20px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.contact_title {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 2rem;
    color: #1B2934;
}

.review-scroll {
    --width: 560px;
    --height: 330px;
}

@media (max-width: 1200px) {
    .play-button {
        top: 35%;
        width: 100px;
        height: 100px;
    }

    .auth-content {
        gap: 1.5rem;
    }

    .auth-buttons {
        gap: .5rem;
    }

    .menu-text {
        font-size: .9rem;
    }

    .btn-find {
        padding: 0.625rem 1.5rem;
    }

    .btn-register,
    .btn-login {
        padding: .625rem 1rem;
    }

    .footer_help {
        gap: 20px;
    }

    .about_title {
        font-size: 65px;
    }
}

@media (max-width: 1024px) {
    .about_title {
        font-size: 55px;
    }

    .section_title {
        font-size: 50px;
    }
}

.mobile-menu {
    display: none;
}

.mobile-menu.is-open {
    display: none;
}

/*Media*/
@media (max-width: 991px) {
    .banner_title {
        font-size: 70px;
    }

    .banner_subtitle {
        font-size: 30px;
    }

    .statistic_body:last-child {
        border-right: 1px solid #fff;
    }

    .statistic_title {
        font-size: 30px;
    }

    .statistic_text {
        font-size: 20px;
    }

    .cta_img {
        height: 400px;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .play-button {
        top: 35%;
        width: 80px;
        height: 80px;
    }

    .work_card {
        height: 320px;
    }

    .text_start,
    .text_center,
    .text_end {
        text-align: start;
        margin-bottom: .7rem;
    }

    .footer-inner div {
        justify-content: start;
    }

    #header span {
        display: none;
    }

    .menu_content,
    .btn-find {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .footer_slogan {
        font-size: 42px;
        padding: 1.5rem 0;
    }

    .work_block {
        max-width: 100% !important;
    }

    .number_block .number {
        font-size: 60px;
    }

    .number_block .symbol {
        font-size: 25px;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 3.8rem;
        left: 1rem;
        min-width: 12rem;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }

    .mobile-menu .dropdown-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        font-weight: 600;
        transition: 0.5s ease-in-out;
        margin-bottom: 1.5rem;
    }

    .mobile-menu a {
        border-bottom: 1px solid var(--lightgray);
    }

    .mobile-menu.is-open {
        display: flex;
    }

    .why-left {
        position: static;
        margin-bottom: 1rem;
        height: auto;
    }

    .why-right {
        margin-top: 2rem;
    }

    .insights_title {
        font-size: 30px;
    }

    .about_title {
        font-size: 45px;
    }

    .content_block {
        margin-right: 0;
    }

    .btn-one,
    .btn-about {
        margin: .5rem 0;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .btn-login {
        padding: 0.625rem 1.7rem;
    }

    .btn-login {
        padding: 0.625rem 1.5rem;
    }
}


@media (max-width: 767px) {
    .banner_title {
        font-size: 55px;
    }

    .banner_subtitle {
        font-size: 34px;
    }

    .section_title {
        font-size: 40px;
    }

    .refer .btn-banner {
        margin: 0 auto !important;

    }

    .work_title {
        margin-bottom: .5rem;
    }

    .work_text {
        margin-top: .5rem;
    }

    .footer-inner div,
    .text_start,
    .text-start,
    .text_center,
    .text_end {
        justify-content: center !important;
        text-align: center !important;
    }

    .btn-home {
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .statistic_title {
        font-size: 24px;
    }

    .statistic_text {
        font-size: 18px;
    }

    .review-scroll {
        --width: 450px !important;
        --height: 320px !important;
    }

    .footer_help {
        display: inline-grid;
        gap: .7rem;
        justify-content: start;
        text-align: start;
    }

    .number_block .number {
        font-size: 50px;
    }

    .review-scroll {
        --width: 400px !important;
        --height: 340px !important;
    }

    .review-scroll .list {
        min-width: calc(405px * var(--quantity));
    }
}

@media (max-width: 450px) {
    .review-scroll {
        --width: 400px !important;
        --height: 340px !important;
    }

    .review-scroll .list {
        min-width: calc(395px * var(--quantity));
    }

    .user-menu .dropdown-menu {
        min-width: 10rem;
    }

    .mobile-menu {
        min-width: 9rem;
        left: .2rem
    }
}

@media (max-width: 400px) {
    .review-scroll {
        --width: 355px !important;
        --height: 350px !important;
    }

    .review-scroll .list {
        min-width: calc(355px * var(--quantity));
    }

    .banner_title {
        font-size: 42px;
    }
}

.insight_img {
    margin-top: 2rem;
    width: 100%;
}

.href_color {
    color: #8D0100;
    font-weight: bold;
}

.modal-dialog {
    max-width: 800px !important;
}

.modal-body {
    background-color: #f3f6fa;
}

.modal-dialog {
    border-radius: 30px;
}

.alertify-notifier .ajs-message.ajs-success {
    background: #198754;
}

.alertify-notifier .ajs-message.ajs-error {
    background: #dc3545;
}

.social_media {
    margin: 0 .5rem;
    font-size: 20px;
}

.social_media:hover {
    color: #8D0100
}


/*Availability*/

.weekday-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
}

@media (min-width: 576px) {
    .weekday-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .weekday-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.weekday-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #e6e8ec;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
    transition: all .15s ease-in-out;
    user-select: none;
}

.weekday-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    transform: translateY(-1px);
}

.weekday-card.is-active {
    border-color: #1e66ff;
    background: rgba(30, 102, 255, .06);
}

.weekday-name {
    font-weight: 600;
}

.weekday-pill {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfd6e4;
    background: #fff;
}

.weekday-card.is-active .weekday-pill {
    border-color: #1e66ff;
    background: #1e66ff;
    color: #fff;
}

.btn-w-25 {
    width: 200px;
    margin-top: 0 !important;
}

@media screen {

}


.modal-contact {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.modal-contact.active {
    opacity: 1;
    visibility: visible;
}

.modal-contact-inner {
    background: #fff;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}
