: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: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Euclid Circular";
    margin-right: 25px;
}

.navbar.scrolled .nav-link {
    color: var(--them-color-main);
}

.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;
}

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

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

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

    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;
    }
}

@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;
    z-index: -1;
}

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

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

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

#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;
}

/* banner  */

.banner-emp {
    background-image: url(../images/emp/emp-hm-bg.jpg);
    padding-top: 260px;
    padding-bottom: 20px;
    background-position: 50%;
    background-size: cover;
}

.bg-overlay-black {
    background: #161c2d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
}

.container-infront {
    position: relative;
    z-index: 1;
}

h1.banner-text {
    font-size: 48px;
    font-family: "Euclid Circular Medium";
    color: #fff;
}

p.banner-text {
    color: #ffffff80;
    font-size: 18px;
    margin-top: 25px;
    display: block;
}

.banner-head {
    margin-bottom: 60px;
}
.shape {
    bottom: -1px;
    left: 0;
    position: absolute;
    right: 0;
}
.shape>svg {
    height: auto;
    transform: scale(2);
    transform-origin: top center;
    width: 100%;
}
.banner-image {
    width: 450px;
    height: 100%;
    box-shadow: 0 0 3px #1e293b26;
    border: 10px solid #fff;
    overflow: hidden;
    border-radius: 6px;
}
img.banner-img {
    width: 100%;
    object-fit: cover;
}

.banner-paly-btn {
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    margin: 0 auto;
    right: 0;
    border-radius: 50%;
    color: #3c65f5;
    cursor: pointer;
}


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

.count-number {
    color: var(--them-color-main);
    font-family: "Euclid Circular Medium";
    font-size: 55px;
    line-height: 70px;
}

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

.bg-color {
    background-color: #f0f5f7;
}

a.btn-buttons {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    background-color: #1967d2;
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 15px;
    margin-bottom: 20px;
    display: block;
}

.highlight-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background: #121b20;
    color: #fff;
}

.highlight-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #121b20;
    left: 0;
    top: 0;
    opacity: 0.4;
}

img.highlight-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    font-size: 18px;
    text-align: left;
    font-family: "Euclid Circular Medium";
}

/* billing */
.card-price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 30px 0;
}
.card-price h5 {
    font-size: 55px;
}
.price-card {
    padding: 20px 60px;
}
ul.list-subscription li.subs-list-data {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #f3f4f6;
    border-radius: 2rem;
}
ul.list-subscription i {
    color: #78bb7b;
}

.card.card-standard {
    transform: scale(1.06);
    box-shadow: 0 0 6px #4f5bf7;
}

.card.card-basic,
.card.card-premium,
.card.card-standard {
    cursor: pointer;
}

.card.card-basic,
.card.card-premium {
    transform: scale(0.9);
    transition: 0.6s;
}

.card.card-basic:hover,
.card.card-premium:hover {
    transform: scale(0.95);
}

@media screen and (max-width: 768px) {
    .card.card-basic,
    .card.card-premium,
    .card.card-standard {
        transform: scale(1);
    }
}

/* common */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}
.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    border: 5px solid #2980b9;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #3498db;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font: 700 18px/1 "Euclid Circular", sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
}

/* top left*/
.ribbon-top-left {
    top: -10px;
    left: -10px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}
.ribbon-top-left::before {
    top: 0;
    right: 0;
}
.ribbon-top-left::after {
    bottom: 0;
    left: 0;
}
.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
    top: -10px;
    right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}
.ribbon-top-right::before {
    top: 0;
    left: 0;
}
.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}
.ribbon-top-right span {
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
    bottom: -10px;
    left: -10px;
}
.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
    border-bottom-color: transparent;
    border-left-color: transparent;
}
.ribbon-bottom-left::before {
    bottom: 0;
    right: 0;
}
.ribbon-bottom-left::after {
    top: 0;
    left: 0;
}
.ribbon-bottom-left span {
    right: -25px;
    bottom: 30px;
    transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}
.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
    border-bottom-color: transparent;
    border-right-color: transparent;
}
.ribbon-bottom-right::before {
    bottom: 0;
    left: 0;
}
.ribbon-bottom-right::after {
    top: 0;
    right: 0;
}
.ribbon-bottom-right span {
    left: -25px;
    bottom: 30px;
    transform: rotate(-225deg);
}

.jumbotron {
    padding: 20px;
    background: #f3f4f6;
    border-radius: 10px;
    border: dashed 1px #d2d2d2;
}

section.subscription-sec {
    background-image: url(../images/emp/bg-billing.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

section.subscription-sec::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #121b20;
    left: 0;
    top: 0;
    opacity: 0.8;
}



/* 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;
}

.section-title h2 {
    font-family: 'Euclid Circular';
    margin-bottom: 15px;
    display: block;
}

img.campus-pro-mobileApp {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.shape-bg {
    background-image: url(../images/emp/shape-1.png);
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

h4.sub-head {
    font-size: 18px;
    color: var(--them-color-main2);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.app-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

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;
}

.card-feature {
    width: 100%;
    height: 280px;
    padding: 30px 7px;
    transition: .5s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 3px #3c485826;
    border: 0 solid #e5e7eb;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.card-feature:hover {
    transform: translateY(-10px);
    border: 1px solid var(--them-color-main2);
}

.feature-content h5 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 14px;
}

.card-img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.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;
}


.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;
}

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

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


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

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

    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;
    }

    /* custom */

    .banner-out {
        display: none;
    }

    section#home {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    h1.banner-text {
        font-size: 34px;
    }
    .highlight-card {
        margin-bottom: 20px;
    }

    .highlight-content {
        font-size: 40px;
        line-height: initial;
        font-family: 'Euclid Circular SemiBold';
    }
}

