:root {
    --them-color-main: #3b155e;
    --them-color-main2: #2f57ef;
    --them-color-second: #cf5b80;
    --them-color-third: #b966e7;
    --them-bg-one: #e6edf9;
    --them-bg-two: #ecedf2;
}

@font-face {
    font-family: "Euclid Circular";
    src: url("../fonts/Euclid-Circular-A-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular Medium";
    src: url("../fonts/Euclid-Circular-A-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular SemiBold";
    src: url("../fonts/Euclid-Circular-A-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular Bold";
    src: url("../fonts/Euclid-Circular-A-Bold.ttf") format("truetype");
}

* {
    font-family: "Euclid Circular", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,
h2,
h3 {
    font-family: "Euclid Circular Bold";
}

h4,
h5,
h6 {
    font-family: "Euclid Circular SemiBold";
}

a,
button,
h4,
img,
input,
span {
    transition: all 0.3s ease 0s;
}

.navbar {
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.bg-transpar {
    background-color: transparent;
}

.momentLeft,
.momentRight {
    transition: all 0.3s ease;
}

.navbar .nav-link {
    position: relative;
    display: block;
    opacity: 1;
    font-size: 16px;
    color: var(--them-color-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Euclid Circular";
    margin-right: 25px;
}

.navbar .nav-link.active::before {
    content: "";
    position: absolute;
    background: var(--them-color-second);
    width: 100%;
    height: 2px;
    bottom: 2px;
    left: 0;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--them-color-second);
}

nav.navbar {
    transition: margin-top 0.5s ease, background-color 0.5s ease,
        box-shadow 0.5s ease;
    background: transparent;
}

.custom-dropdown .nav-link {
    position: relative;
}

.custom-dropdown .nav-link::after {
    content: "\f282";
    font-family: bootstrap-icons !important;
    font-size: 10px;
    font-weight: bold;
    margin-left: 8px;
}

.wide-dropdown {
    left: 0;
    right: 0;
    padding: 18px;
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submenu-list {
    list-style-type: none;
    padding-left: 0;
}

.submenu-list li a,
.submenu-list li a.active {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    position: relative;
    margin: 0 10px;
    font-size: 16px;
    transition: 0.8s all;
    padding-bottom: 5px;
    transition: width 0.8s;
    color: var(--them-color-main);
    text-wrap: auto;
}

.submenu-list li a:hover {
    color: var(--them-color-second);
}

.submenu-list li a.active {
    color: var(--them-color-second);
}

.navbar.scrolled {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    background-color: #fff;
}

.logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Custom Hamburger Button */
.navbar-toggler.custom-toggler {
    border: none;
    background: transparent;
    outline: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: background 0.3s ease-in-out;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::before,
.navbar-toggler.custom-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease-in-out;
    left: 0;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::before {
    transform: translateY(-8px);
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::after {
    transform: translateY(8px);
}

.custom-dropdown .dropdown-menu {
    display: none;
    width: 800px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top: 2px solid var(--them-color-second);
    position: relative;
}

.custom-dropdown .dropdown-menu.mini-drop-down {
    width: 180px;
}

.custom-dropdown .dropdown-menu.single-drop-down {
    width: 300px;
}

.custom-dropdown .dropdown-menu.full-drop-down {
    width: 100%;
}

.custom-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    background: transparent;
    width: 15px;
    height: 15px;
    top: -20px;
    left: 10px;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent var(--them-color-second) transparent;
}

/* Show the dropdown on hover */
.custom-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub .dropdown-menu.nested-dropdown.show {
    display: block;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub ul.dropdown-menu:hover {
    display: block;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub ul.dropdown-menu {
    background-color: var(--them-bg-one);
    width: 250px;
    display: none;
    transition: 2s;
    margin-top: -10px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    max-height: 500px;
    overflow-y: auto;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

/* Additional mobile styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-brand img {
        width: 120px;
    }

    .navbar-collapse {
        padding: 15px;
        border-radius: 5px;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 0px 20px;
        transition: background 0.2s ease;
        text-align: left;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: flex-start;
    }

    .navbar .nav-link {
        color: #ccc;
    }
}

section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* footer */
footer#footer {
    background: linear-gradient(to right,
            rgb(242 246 253),
            rgb(242 246 253),
            rgb(192 211 240));
}

img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.call-sec h4,
h4.footer-title {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #202124;
    font-weight: 600;
}

.call-sec a.call-footer {
    font-size: 18px;
    line-height: 28px;
    color: #1967d2;
    font-weight: 600;
}

a.mail-footer {
    color: #1967d2 !important;
    font-weight: 600;
    font-family: "Euclid Circular Medium";
}

.call-sec {
    margin-bottom: 20px;
}

footer.footer p,
footer.footer a {
    font-size: 15px;
    line-height: 30px;
    color: dimgray;
    font-weight: 400;
}

.footer-about-us {
    padding-right: 20px;
}

.footer-bottom-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

a.social-icon:hover {
    color: var(--them-color-main);
}

ul.footer-links {
    margin-top: 20px;
}

li.footer-links-item {
    color: dimgray;
    transition: all 0.2s ease;
    font-size: 16px;
    margin-bottom: 10px;
    transform: translateX(0px);
}

li.footer-links-item::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--them-color-main);
    top: 50%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}

li.footer-links-item:hover {
    padding-left: 20px;
    color: var(--them-color-second);
}

li.footer-links-item:hover a {
    color: var(--them-color-second);
}

li.footer-links-item:hover::before {
    visibility: visible;
    opacity: 1;
}

footer#footer.footer-main {
    padding: 60px 0;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

footer.footer-bottom {
    padding: 20px 0;
}

footer.footer p,
footer.footer a {
    font-size: 15px;
    line-height: 30px;
    color: dimgray;
    font-weight: 400;
}

ul.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

ul {
    list-style: none;
}

.employee-reg-form .card-body {
    padding: 50px 70px;
}

.employee-reg-form label.form-label {
    font-size: 14px;
    margin-bottom: 0.2rem;
}

ul.welcome-text li {
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

ul.welcome-text li::before {
    content: "\f272";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
    background: var(--them-color-second);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.employee-register .position-sticky-bar {
    position: sticky;
    top: 50px;
}

ul.check-text li {
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    margin-top: 15px;
}

ul.check-text li::before {
    content: "\f272";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
    background: var(--them-color-second);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.border-left-1 {
    border-left: 1px solid #dfe3fc;
}

.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #d2d5db;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}

.drop-container:hover,
.drop-container.drag-active {
    background: #eee;
    border-color: #111;
}

.drop-container:hover .drop-title,
.drop-container.drag-active .drop-title {
    color: #222;
}

.drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color 0.2s ease-in-out;
}

input#company_image[type="file"] {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
}

input#company_image[type="file"]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

input#company_image[type="file"]::file-selector-button:hover {
    background: #0d45a5;
}

/*dropdown style*/
span.select2.select2-container.select2-container--default {
    display: block;
}

.select2-container--default .select2-selection--single {
    border-color: rgb(209 213 219) !important;
    height: 35px !important;
    background-color: white;
    padding-bottom: 5px;
    padding-top: 4px;
    position: relative;
}

.btn-group.course-options {
    flex-flow: wrap;
}

/* banner custom work */

section.banner {
    padding-top: 100px;
    background-image: url(../images/portal/banner-bg-2.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
}

section.banner.bg-blue {
    background-color: #f2f6fd;
}

.banner-content {
    width: 65%;
}

.banner-title h1 {
    font-size: 48px;
    line-height: 60px;
    color: #05264e;
    margin-bottom: 30px;
}

span.highlight {
    font-family: inherit;
    color: #3c65f5;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #05264e;
}

.banner-title h1 span.highlight:after {
    content: "";
    background-color: #3c65f5;
    height: 25px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -6px;
    z-index: -1;
    opacity: 0.2;
}

.banner-left,
.banner-right {
    margin-top: 30px;
    position: relative;
}

.banner-text p {
    position: relative;
    font-size: 18px;
    color: #4f5e64;
}

.login-home {
    padding: 50px;
    position: relative;
    max-width: 490px;
    padding-left: 60px;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 40px 40px 40px 0px;
    float: right;
}

.login-home .form-control {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgb(209 213 219);
    border-radius: 0;
    position: relative;
    margin-top: 30px;
    display: block;
    width: 100%;
    font-size: 18px;
}

.google-login-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #3367d6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 350px;
    font-size: 12px;
}

img.googleIcon {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

span#togglePassword {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.btns-primary {
    color: #fff;
    border-color: #0d6efd;
    border: none;
    background-color: #3c65f5;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
}

.btns-primary:hover {
    background-color: #05264e;
    transform: translateY(-2px);
    transition: 0.2s;
    color: #fff;
}

img.banner-shape-1 {
    position: absolute;
    top: 0;
    right: -50px;
    transition: all 2s;
    animation: TopBottom 5s ease-in-out infinite;
}

img.banner-shape-2 {
    position: relative;
    bottom: 50px;
    animation: TopBottom 5s ease-in-out infinite;
}

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

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(0);
    }
}

a.btn-button {
    background: #3c65f5;
    padding: 20px 40px;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    z-index: 1;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

a.btn-button span {
    z-index: 2;
    position: relative;
}

a.btn-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--them-color-main);
    z-index: 1;
    width: 0%;
    height: 100%;
    transition: all 0.5s;
}

a.btn-button:hover::before {
    width: 100%;
}

a.btn-button.outline-primary {
    background: transparent;
    color: #3c65f5;
    border: 1px solid;
}

a.btn-button:hover {
    color: #fff;
}

.banner-images {
    width: 100%;
    height: 500px;
    padding-top: 30px;
    display: block;
}

img.banner-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    animation: banner-img-1 2s linear infinite alternate;
}

img.banner-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    animation: banner-img-2 2s linear infinite alternate;
}

.banner-images img.banner-shape-1 {
    position: absolute;
    top: 0%;
    right: 50px;
    transition: all 2s;
    animation: TopBottom1 6s ease-in-out infinite;
}

.banner-images img.banner-shape-2 {
    position: absolute;
    bottom: 0px;
    animation: TopBottom2 6s ease-in-out infinite;
}

@keyframes banner-img-1 {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes banner-img-2 {
    0% {
        transform: translateY(-20px) translateX(50px);
    }

    100% {
        transform: translateY(-20px) translateX(0);
    }
}

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

    50% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
    }
}

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

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

    100% {
        transform: translateY(0);
    }
}

/* section category */

.section-title h2 {
    font-size: 36px;
    margin-bottom: 1rem;
}

p.description {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #66789c;
}

.cat-card-body {
    border: 1px solid rgba(6, 18, 36, 0.1);
    padding: 12px 18px;
    display: flex;
    width: 100%;
    text-align: left;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #fff;
    flex-wrap: nowrap;
    transition-duration: 0.2s;
}

.cat-card-body:hover {
    border: 1px solid #b4c0e0;
    box-shadow: 0 10px 20px -5px rgba(10, 42, 105, 0.06);
    transform: translateY(-3px);
}

.cat-icon {
    margin-right: 10px;
    width: 60px;
}

.cat-text {
    flex: 1;
}

.cat-card {
    margin: 10px;
}

.cat-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

a.cat-card-title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 3px;
    font-family: "Euclid Circular SemiBold";
    color: #05264e;
}

p.cat-card-text {
    font-size: 12px;
    color: #4f5e64;
}

.slick-prev:before,
.slick-next:before {
    color: var(--them-color-main2) !important;
    font-size: 28px !important;
}

.slick-dots li.slick-active button:before {
    color: var(--them-color-main2) !important;
}

.slick-dots li button:before {
    color: var(--them-color-second) !important;
}

.hiring-box {
    border: 1px solid #e0e6f7;
    padding: 40px 250px 40px 190px;
    position: relative;
    display: flex;
    box-shadow: 0 10px 20px -5px rgba(10, 42, 105, 0.06);
    margin: auto;
    border-radius: 4px;
    overflow: hidden;
}

span.text-sub-head {
    font-size: 16px;
    line-height: 20px;
    color: #a0abb8;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

span.text-head {
    font-size: 45px;
    color: #05264e;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Euclid Circular SemiBold";
}

.hiring-box .text-1 {
    text-align: left;
}

.hiring-box .text-2 {
    font-size: 18px;
    line-height: 23px;
    color: #66789c;
    font-weight: 500;
    padding: 29px 20px 0;
}

.color-brand-1 {
    color: #05264e !important;
}

.hiring-box .text-3 {
    padding: 34px 0 0 20px;
}

section#hiring {
    padding-top: 10px;
}

.hiring-box::before {
    content: "";
    position: absolute;
    background-image: url(../images/portal/bg-left-hiring.svg);
    width: 160px;
    height: 100%;
    top: 0;
    left: 0;
    background-size: 135px;
    background-repeat: no-repeat;
    background-position: center;
}

.hiring-box::after {
    content: "";
    position: absolute;
    background-image: url(../images/portal/bg-right-hiring.svg);
    width: 200px;
    height: 100%;
    top: 0;
    right: 0;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 44px;
}

#scrollUp {
    position: fixed;
    width: 48px;
    height: 48px;
    color: #fff;
    right: 30px;
    bottom: 30px;
    border-radius: 30px;
    text-align: center;
    line-height: 48px;
    overflow: hidden;
    z-index: 999 !important;
    border: 0;
    background-color: #3c65f5;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    display: none;
    /* Initially hidden */
}

#scrollUp:hover {
    background-color: #2c4ec7;
}

#scrollUp:active {
    background-color: #2b4db7;
}

.btn-group {
    .select {
        position: relative;
        color: inherit;

        input:checked+label {
            background-color: #fff;
            color: #4f5bf7;
            border-color: #3c65f5;
            box-shadow: 0 2px 4px -5px #0a2a69;

            &:hover,
            &:focus,
            &:active {
                background-color: #fff;
                color: #4f5bf7;
                border-color: #3c65f5;
                box-shadow: 0 2px 4px -5px #0a2a69;
            }
        }

        input {
            opacity: 0;
            position: absolute;
        }

        .button_select {
            margin: 0 10px 10px 0;
            display: flex;
            background-color: transparent;
            color: #000000;
            padding: 8px 17px;
            height: 47px;
            width: auto;
            background: #fff;
            border: 1px solid #e0e6f7;
            border-radius: 8px;
            font-size: 12px;
            font-family: "Euclid Circular SemiBold";
            line-height: 18px;
            text-align: left;
            align-items: center;

            &:hover,
            &:focus,
            &:active {
                background-color: #fff;
                color: #4f5bf7;
                border-color: #3c65f5;
                box-shadow: 0 2px 4px -5px #0a2a69;
            }
        }
    }
}

.option {
    position: relative;
    color: green;

    input {
        opacity: 0;
        position: absolute;
    }

    input:checked+span {
        background-color: #4f5bf7;
        color: #fff;

        &:hover,
        &:focus,
        &:active {
            background-color: #4f5bf7;
            color: #fff;
        }
    }

    .btn-option {
        margin: 0 10px 10px 0;
        display: flex;
        background-color: transparent;
        color: #4f5bf7;

        &:hover,
        &:focus,
        &:active {
            background-color: transparent;
            color: #4f5bf7;
        }
    }
}

.sidebar-filters .btn-group {
    flex-flow: wrap;
}

.label-icon img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: cover;
}

.job-post-card {
    border-radius: 8px;
    border: 1px solid #afc4ff;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    background: #e7eeff;
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    padding: 10px;
    display: grid;
    gap: 15px;
    min-height: 300px;
    height: 100%;
}

.job-post-card .apply-btns {
    margin: 0 auto;
}

.col-md-3.even-hight {
    display: flex;
    flex-direction: column;
}

.row.max-height-set {
    max-height: 500px;
    overflow: auto;
}

.job-post-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.job-post-company-icon img {
    width: 50px;
    height: 50px;
    background: #f8faff;
    border-radius: 5px;
    object-fit: cover;
}

h5.company-name {
    font-size: 18px;
    font-family: "Euclid Circular Medium";
    font-weight: 500;
}

.job-post-company-icon {
    width: 50px;
    height: 50px;
}

.job-post-company-head {
    flex: 1;
}

.company-location {
    font-size: 12px;
    color: #a0abb8;
}

a.job-name {
    color: #05264e;
    font-family: "Euclid Circular SemiBold";
    font-size: 18px;
}

.job-type {
    font-size: 12px;
    color: #a0abb8;
    display: inline-block;
    font-weight: 400;
}

.job-details {
    display: flex;
    gap: 10px;
    align-items: center;
}

.job-post-description {
    font-size: 15px;
    color: #4f5e64;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
}

.skill-box {
    background-color: #eff3fc;
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 15px;
    color: #4f5e64;
    display: inline-block;
    border: 1px solid #c3d1e8;
    /* white-space: nowrap;  */
}

a.btn-apply {
    background-color: #d0dcff;
    color: #3c65f5;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: capitalize;
    float: inline-end;
    line-height: normal;
    margin-top: 20px;
}

a.btn-apply:hover {
    background-color: var(--them-color-main);
    color: #fff;
}

.find-section-images img.main-find-job-img {
    border-radius: 32px;
    height: 474px;
    width: 585px;
    object-fit: cover;
    max-width: 100%;
    position: relative;
}

.mini-icon-sec img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mini-card-sec {
    background: rebeccapurple;
    position: absolute;
    bottom: 0;
    right: 0;
}

.find-section-images {
    position: relative;
}

.mini-card-sec {
    background: #ffffff;
    position: absolute;
    bottom: -25px;
    right: 0;
    height: 55%;
    width: 34%;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e0e6f7;
    display: grid;
    gap: 5px;
    box-shadow: 0 0 9px rgb(0 0 0 / 8%);
}

.mini-sec-title {
    font-family: "Euclid Circular SemiBold";
    font-size: 18px;
}

p.mini-sec-text {
    font-size: 12px;
    color: #a0abb8;
}

a.learn-more-btn {
    background: var(--them-color-main);
    text-align: center;
    font-size: 13px;
    line-height: normal;
    padding: 5px;
    border-radius: 1rem;
    color: #fff;
}

a.learn-more-btn:hover {
    background-color: #fff;
    color: var(--them-color-main);
    border: 1px solid var(--them-color-main);
}

h4.title-sub {
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    color: #a0abb8;
}

h2.title-main {
    font-size: 52px;
    line-height: 66px;
    font-weight: 800;
    color: #05264e;
    margin-bottom: 30px;
}

.features-box {
    text-align: center;
}

.count-number {
    color: #3c65f5;
    font-family: "Euclid Circular Bold";
    font-size: 55px;
    line-height: 70px;
}

.features-box {
    padding: 0 20px;
}

.company-logo img {
    width: 50px;
    height: 50px;
    background: #f8faff;
    border-radius: 5px;
    object-fit: cover;
}

.company-box {
    border: 1px solid rgba(6, 18, 36, 0.1);
    padding: 12px 18px;
    display: grid;
    width: 100%;
    text-align: left;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #fff;
    transition-duration: 0.2s;
    min-height: 150px;
}

.company-box:hover {
    border: 1px solid #b4c0e0;
    box-shadow: 0 10px 20px -5px rgba(10, 42, 105, 0.06);
    transform: translateY(-3px);
}

.company-heads {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.company-title {
    font-family: "Euclid Circular SemiBold";
    flex: 1;
    font-size: 14px;
}

.company-title small {
    display: block;
}

.google-btn-ext {
    color: #6b7385;
    font-size: 16px;
    margin-bottom: 1rem;
}

a.register-btn {
    color: var(--them-color-main2);
    text-decoration: underline;
}

a.register-btn:hover {
    color: var(--them-color-main);
}

a.view-all-btn {
    display: block;
    text-align: center;
    color: #3c65f5;
    position: relative;
    background: #fff;
    margin: 0 auto;
    width: 200px;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #3c65f5;
}

a.view-all-btn:hover {
    color: #ffffff;
    background: #3c65f5;
}

.banner-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.select2-selection {
    border: 1px solid #ced4da;
    padding: 6px;
}

img#profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.profile-add-sec .profile {
    width: 150px;
    height: 150px;
    margin-top: 10px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

input#profile_img {
    position: absolute;
    bottom: 0;
    background: #ffffff52;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    width: 100%;
    height: 100%;
    opacity: 0;
}

input#profile_img:focus {
    outline: 0px auto -webkit-focus-ring-color;
}


/* ------------------------------------------------------ */
/* mobile responsive */

@media (max-width: 768px) {
    .banner-content {
        width: 100%;
    }

    a.btn-button {
        padding: 10px;
        display: block;
        margin-top: 10px;
        text-align: center;
    }

    .banner-buttons a.btn-button {
        width: 100%;
    }

    section.banner {
        padding-top: 50px;
    }

    .hiring-box {
        padding: 20px;
        display: block;
    }

    .hiring-box::before,
    .hiring-box::after {
        content: none;
    }

    .hiring-box .text-2 {
        font-size: 14px;
        padding: 0;
    }

    span.text-sub-head {
        font-size: 14px;
    }

    span.text-head {
        font-size: 20px;
    }

    .hiring-box .text-1 {
        text-align: center;
        margin-bottom: 10px;
    }

    .btn-group,
    .btn-group-vertical {
        flex-wrap: wrap;
    }

    .mini-card-sec {
        position: relative;
        width: 100%;
        height: 100%;
        bottom: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    h4.title-sub {
        font-size: 18px;
    }

    h2.title-main {
        font-size: 34px;
        line-height: normal;
    }

    .features-box {
        margin-bottom: 20px;
        background: #f8faff;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 2px 3px rgb(60 101 245 / 12%);
    }

    .count-number {
        font-size: 40px;
        line-height: normal;
    }

    ul.navbar-nav.m-auto {
        margin: 0 !important;
    }

    .navbar .nav-link {
        padding: 0 !important;
    }

    .banner-right {
        display: block !important;
    }

    .border-left-1 {
        border-left: none;
    }

    .banner-images img.banner-shape-1 {
        right: 0;
    }

    .login-home {
        padding: 15px;
    }

    .login-home h3 {
        text-align: center;
        font-size: 18px;
    }

    .login-home form {
        font-size: 14px;
    }

    .banner-left .banner-title h1 {
        font-size: 30px;
    }

    img#profile-image, .profile-add-sec .profile {
        width: 100px;
        height: 100px;
    }
}