@import './variable.css';

.rm-border {
    border: none;
    outline: none;
}

a{
    text-decoration: none !important;
    color: inherit !important;
}

.cursor-pointer {
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none !important;
}

.fw-500 {
    font-weight: 500;
}

.button {
    border: none;
    outline: none;
    border-radius: 8px;
    text-align: center;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
}

.primary-outline-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.sm-fs {
    font-size: clamp(16px, 4vw, 18px);
}

.md-fs {
    font-size: clamp(22px, 4vw, 26px);
}

.lg-fs {
    font-size: clamp(32px, 4vw, 44px);
}

.heading-text {
    font-size: clamp(34px, 4vw, 60px);
}


.text-shadow {
    text-shadow: -1px 1px 0 #000,
        1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
}

.text-shadow-light {
    text-shadow: 2px 4px 8px rgb(255, 255, 255);
}

.Slider-Pagination div {
    height: 25px;
    width: 25px;
    border: 1px solid var(--primary-color) !important;
    padding: 2px;
    margin: 4px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: none !important;
    align-items: center;
}

.Slider-Pagination div span {
    height: 100%;
    width: 100%;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.Slide-Navigate-btn {
    height: 45px;
    width: 45px;
    padding: 2px;
    margin: 4px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: none;
    align-items: center;
}

.resp-nav-fonts {
    font-size: clamp(14px, 1vw, 18px);
}

.navbar-Collapse {
    background-color: white !important;
    top: 55px !important;
    width: 100% !important;
    padding: 0px !important;
    margin: 0px !important;
}

.custom-select {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 0px;
}

.form-select:focus {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
}

.tabs {
    border-bottom: 1px solid black;
    font-size: clamp(20px, 4vw, 36px);
}

.tabs .tab {
    color: var(--primary-color);

}

.tabs .active {
    border-bottom: 5px solid var(--primary-color);
}

.custom-primary-select {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0px;

}

.custom .accordion-item {
    border: none;
}

.custom .accordion-item:first-of-type>.accordion-header .accordion-button {
    background-color: none !important;
    color: none !important;
}

.custom .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: inherit;
    box-shadow: none;
}

.custom .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.custom .accordion-header {
    border-bottom: 1px solid black;
}

.custom-icon .accordion-button::after {
    background-image: url(./../images/plus.svg);
    height: 30px;
    width: 30px;
    background-size: contain;
}

.custom-icon .accordion-button:not(.collapsed)::after {
    background-image: url(./../images/minus.svg);
    background-size: contain;
    height: 30px;
    width: 30px;
}

.secondary-list li::marker {
    color: var(--secondary-color);
    font-size: 50px;
    margin: 0px;
    padding: 0px;
}

.browse-job-bg {
    background-image: url(./../images/unsplash_t6QYC3Zmis0.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}

.methodology-section-bg {
    background-image: url(./../images/services_bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-light-bg {
    background-color:transparent;
    box-shadow: none;
}

@media (max-width: 767px) {

    .browse-job-bg {
        background-image: url(./../images/unsplash_t6QYC3Zmis0_m.png);
        background-position: bottom center;
    }

}

@media (max-width: 992px) {
    .nav-dropdown .dropdown-menu {
        background-color: transparent;
        border: none;
    }

    .text-lg-white {
        color: white !important;
    }

    .text-lg-black {
        color: black !important;
    }

    .methodology-section-bg {
        background-image: url(./../images/unsplash_HwxVLhLyg2s1.png);
        background-position: top center;
    }

    .box-light-bg {
        background-color:  rgba(255, 255, 255, 0.7);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--primary-light-color);
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dropdown-select .primary-button {
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sugestion-Dropdown {
    min-width: 300px;
}

@media (max-width: 992px) {

    .sugestion-Dropdown {
        min-width: 100%;
    }

}

.custom-select-input .main-item {
    border-top: 1px solid #f3f2f2a6;
    width: 100%;
}

input:focus {
    outline: none;
}

.list-dropdown {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.primary-checkbox {
    accent-color: var(--primary-color);
    height: 16px;
    width: 16px;
    outline-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* Mini Loader */
.spinner {
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-loader {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid rgb(255, 255, 255);
    border-top: 5px solid transparent;
    animation: spin 1s linear infinite;
}

.spinner-loader.primary {
    border-color: var(--primary-color);
    border-top: 5px solid transparent;
    width: 75px;
    height: 75px;
    border-width: 10px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.primary-mini-loader {
    border: 5px solid var(--primary-color);
    border-top: 5px solid transparent;
}

.search-form{
    width: 100%;
    max-width: 700px;
}

.placeholder-text {
    color: #55585b;
}