@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --colorTheme: #fa5326;
    --colorBlack: #3f4454;
    --colorWhite: #ffffff;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Bebas Neue", sans-serif;
    overflow-x: hidden;
}
@font-face {
    font-family: "Futura PT Book";
    src: url(../fonts/FuturaPTBook.otf) format('opentype'),
         url(../fonts/FuturaPTBook.ttf) format('truetype');
}
@font-face {
    font-family: "Futura PT Demi";
    src: url(../fonts/FuturaPTDemi.otf) format('opentype'),
         url(../fonts/FuturaPTDemi.ttf) format('truetype');
}
select,
button {
    outline: none;
    box-shadow: none;
}
select:focus,
button:focus {
    outline: none;
    box-shadow: none!important;
}
a {
    text-decoration: none;
}
a:hover {
    transition: all 0.4s ease-in-out;
}
a:focus-visible {
    outline: none;
}
p {
    font-family: "Futura PT Book";
}
.mb-70 {
    margin-bottom: 70px;
}

/*-- Start Custom Button --*/
.thm-btn {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorTheme);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    display: inline-block;
}
.thm-btn:hover {
    background-color: var(--colorWhite);
    color: var(--colorBlack);
    transition: all 0.4s ease-in-out;
}
.thm-btn-1 {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorBlack);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorWhite);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    display: inline-block;
}
.thm-btn-1:hover {
    background-color: var(--colorTheme);
    color: var(--colorWhite);
    transition: all 0.4s ease-in-out;
}
.thm-btn-2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorBlack);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    display: inline-block;
}
.thm-btn-2:hover {
    background-color: var(--colorWhite);
    color: var(--colorBlack);
    transition: all 0.4s ease-in-out;
}
.thm-btn-3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorBlack);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    display: inline-block;
}
.thm-btn-3:hover {
    background-color: var(--colorTheme);
    color: var(--colorWhite);
    transition: all 0.4s ease-in-out;
}
.thm-btn-4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorTheme);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    display: inline-block;
}
.thm-btn-4:hover {
    background-color: var(--colorBlack);
    transition: all 0.4s ease-in-out;
}
/*-- End Custom Button --*/

/*-- Start Header --*/
.header {
    position: absolute;
    z-index: 3;
    width: 100%;
    padding: 0 24px;
    transition: all 0.4s ease-in-out;
}
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
}
.header.header-sticky.is-sticky {
    padding: 0 24px;
    background-color: var(--colorBlack);
    box-shadow: 0 0 10px var(--colorBlack);
}
.header .navbar {
    padding: 0;
}
.header .navbar-brand img {
    width: 193px;
    transition: all 0.4s ease-in-out;
}
.header.header-sticky.is-sticky .navbar-brand img {
    width: 121px;
}
.header .navbar-toggler {
    border: none;
    border-radius: 0;
    font-size: 28px;
    color: var(--colorWhite);
    padding: 0;
}
.header button[aria-expanded="true"] .ti-menu-3:before {
    content: "\eb55";
}
.header .navbar-expand-lg .navbar-nav {
    align-items: center;
}
.header .navbar-expand-lg .navbar-nav .nav-item {
    transition: all 0.4s ease-in-out;
}
.header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding: 0 0 0 20px;
}
.header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 20px;
    color: var(--colorWhite);
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    padding: 40px 20px!important;
    position: relative;
}
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px!important;
}
.header .navbar-expand-lg .navbar-nav .nav-link:hover,
.header .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--colorTheme);
}
.header .navbar-expand-lg .navbar-nav .nav-link:hover::before,
.header .navbar-expand-lg .navbar-nav .nav-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    margin: 0 auto;
    background-color: var(--colorTheme);
    transition: all 0.4s ease-in-out;
}
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--colorWhite);
}
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--colorTheme);
}
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-link:hover::before, 
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-link.active::before {
    bottom: 15px;
}
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .dropdown:hover .nav-link.dropdown-toggle::before, 
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle.show::before {
    bottom: 15px;
}

.header .navbar-expand-lg .navbar-nav .nav-item .thm-btn {
    background-color: transparent;
    border: 2px solid var(--colorTheme);
    padding: 8px 30px;
    color: var(--colorWhite);
}
.header .navbar-expand-lg .navbar-nav .nav-item .thm-btn:hover {
    background-color: var(--colorTheme);
    color: var(--colorWhite);
    transition: all 0.4s ease-in-out;
}
.header.header-sticky.is-sticky .navbar-expand-lg .navbar-nav .nav-item .thm-btn {
    color: var(--colorWhite);
}
.home-main .header .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--colorWhite);
}
.home-main .header .navbar-expand-lg .navbar-nav .nav-link:hover, 
.home-main .header .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--colorTheme);
} 
.home-main .header .navbar-expand-lg .navbar-nav .nav-item .thm-btn {
    color: var(--colorWhite);
}
.single-jobs .header .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--colorBlack);
}
.single-jobs .header .navbar-expand-lg .navbar-nav .nav-link:hover, 
.single-jobs .header .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--colorTheme);
} 
.single-jobs .header .navbar-expand-lg .navbar-nav .nav-item .thm-btn {
    color: var(--colorBlack);
}
.single-jobs .header .navbar-expand-lg .navbar-nav .nav-item .thm-btn:hover {
    color: var(--colorWhite);
}
.header .dropdown-menu {
    background-color: transparent;
    box-shadow: 0 0 30px #2c2e36;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    margin-top: 0;
    margin-left: 65px;
    z-index: 1;
    width: 250px;
}
.header .dropdown-item {
    font-size: 20px;
    color: var(--colorWhite);
    position: relative;
    z-index: 1;
    padding: 5px 30px 5px 50px;
    white-space: normal;
}
.header .dropdown-toggle {
    white-space: wrap;
}
.header .navbar-expand-lg .navbar-nav .dropdown:hover .nav-link {
    color: var(--colorTheme);
}
.header .navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle.show {
    color: var(--colorTheme);
}
.header .navbar-expand-lg .navbar-nav .dropdown:hover .nav-link.dropdown-toggle::before,
.header .navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle.show::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    margin: 0 auto;
    background-color: var(--colorTheme);
    transition: all 0.4s ease-in-out;
}
.header .dropdown-menu::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: var(--colorBlack);
    border-radius: 5px;
    clear: both;
}
.header .dropdown-menu::after {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: var(--colorTheme);
    border-radius: 5px;
    clear: both;
}
.header .dropdown-item:hover {
    color: var(--colorTheme);
    background-color: var(--colorBlack);
}
.header .dropdown-item:active {
    color: var(--colorTheme);
    background-color: var(--colorBlack);
}
.header .dropdown-toggle.show .dropdown-menu.show {
    margin-top: 0;
}
.header .dropdown-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    bottom: 0;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    margin: 0 auto;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    transform: translate(-0%, -50%);
}
.header .dropdown-item:hover::before {
    background-color: var(--colorTheme);
}
/*-- End Header --*/

/*-- Start --*/
main {
    overflow-x: hidden;
}
.main-slider {
    background-image: url(../img_2025/home-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 250px 0;
    display: flex;
    align-items: center;
}   
.slide-cnt {
    margin-bottom: 100px;
}
.slide-cnt h1 {
    font-size: 64px;
    color: var(--colorTheme);
    line-height: 80px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.slide-cnt .thm-btn-3 {
    background-color: var(--colorWhite);
    color: var(--colorBlack);
}
.slide-cnt .thm-btn-3:hover {
    background-color: var(--colorTheme);
    color: var(--colorWhite);
}
.video-background {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 250px 0;
}
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-height: 90vh;
    transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) {
    .video-background iframe {
        /* height = 100 * (9 / 16) = 56.25 */
        height: 56.25vw;
    }
}
@media (max-aspect-ratio: 16/9) {
    .video-background iframe {
        /* width = 100 / (9 / 16) = 177.777777 */
        width: 177.78vh;
    }
}
.video-background .slide-cnt {
    position: relative;
}
/*-- End --*/

/*-- Start --*/
.welcome-to {
    padding: 150px 0 100px;
    background-color: var(--colorBlack);
    clip-path: ellipse(85% 100% at bottom);
    margin-top: -190px;
    position: relative;
    z-index: 1;
}
.welcome-to:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -30%;
    background-image: url(../img_2025/sold-star.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    transform: rotate(45deg);
    padding: 38%;
}
.sec-heading h2 {
    font-size:60px;
    color: var(--colorWhite);
    line-height: 60px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
.sec-heading p {
    font-size: 20px;
    color: var(--colorWhite);
    line-height: 30px;
    margin: 0;
}
.welcome-to-cnt {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.welcome-to-cnt .gap-3 {
    margin-top: auto;
    margin-bottom: 30px;
}
.welcome-to-cnt h2 {    
    font-size: 60px;
    color: var(--colorWhite);
    line-height: 60px;
    letter-spacing: 1px;
    margin-bottom: 40px;
} 
.welcome-to-cnt p {
    font-size: 20px;
    color: var(--colorWhite);
    line-height: 30px;
    margin: 0 0 30px;
}
.welcome-to-cnt .thm-btn {
    margin: 30px 0 0;
}
/*-- End --*/

/*-- Start --*/
.latest-roles {
    /* padding: 0 0 100px; */
    background-color: var(--colorBlack);
    position: relative;
}
.home-main {
    background-color: var(--colorBlack);
}
.home-main .latest-roles {
    background-color: transparent;
    z-index: 1;
}
.latest-roles .g-7 {
    --bs-gutter-y: 70px;
    --bs-gutter-x: 70px;
}
.roles-box {
    background-color: var(--colorWhite);
    border-radius: 60px 0 60px 0;
    box-shadow: 10px 10px 20px rgb(33 31 31 / 20%);
    padding: 50px 30px 30px;
    height: 320px;
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}
.roles-box:hover {
    box-shadow: 10px 10px 20px rgb(33 31 31 / 63%);
    transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out; 
    -webkit-transition: all 0.4s ease-in-out;
}
.roles-box .img-fluid {
    max-width: 40%;
}
.role-short-info {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.role-short-info h4 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 500;
    color: var(--colorBlack);
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-right: 20px;
}
.role-short-info h4::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 22px;
    background: var(--colorBlack);
}
.roles-box h6 {
    font-size: 24px;
    font-weight: 500;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 0;
}
.roles-box .roles-title {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 500;
    color: var(--colorBlack);
    padding-bottom: 5px;
    margin-bottom: 17px;
    margin-right: 20px;
}
.roles-box .roles-title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 80%;
    background: var(--colorBlack);
}
.roles-box p {
    font-size: 14px;
    color: var(--colorBlack);
    margin-bottom: 12px;
}
.roles-subtitle h1 {
    font-size:36px;
    font-weight:500;
    color: var(--colorBlack);
    margin-bottom: 15px;
}
.roles-subtitle p {
    font-size: 16px;
    color: var(--colorBlack);
    margin-bottom: 30px;
}
.roles-box .mt-auto .thm-btn {
    font-size: 18px;
    padding: 9px 30px;
}
.roles-box .mt-auto .thm-btn:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
}
.latest-deals-slider .role-short-info h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 62px;
}
.latest-roles .owl-carousel.owl-drag .owl-item {
    padding: 35px 32px 0;
}
.latest-deals-slider.owl-carousel .owl-item img {
    width: max-content;
}
.latest-roles .owl-theme .owl-nav {
    margin-top: 22px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.latest-roles .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -123px;
    right: 226px;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    background-color: transparent;
    opacity: 1;
    width: 70px;
    height: 50px;
}
.latest-roles .owl-carousel .owl-nav button.owl-prev .prev-slide {
    background-image: url(../img_2025/arrow-prev.png);
    background-repeat: no-repeat;
    text-align: right;
    background-position: left bottom 2px;
    width: 70px;
    height: 50px;
}
.latest-roles .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -123px;
    right: 26px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    opacity: 1;
    width: 170px;
    height: 50px;
}
.latest-roles .owl-carousel .owl-nav button.owl-next .next-slide {
    background-image: url(../img_2025/arrow-next.png);
    background-repeat: no-repeat;
    text-align: left;
    background-position: right bottom 2px;
    width: 170px;
    height: 50px;
}
.view-all-roles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--colorTheme);
    border-radius: 100px;
    padding: 12px 12px 12px 30px;
    margin: 0 30px;
}
.view-all-roles p {
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    color: var(--colorWhite);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 30px 0 0;
    width: calc(100% - 200px);
}
/*-- End --*/

/*-- Start --*/
.clients-say {
    padding: 100px 0 0;
    background-color: var(--colorBlack);
    position: relative;
} 
.star-2 {
    position: absolute;
    z-index: 0;
    top: -90%;
    left: -31%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(45deg);
    padding: 40%;
    opacity: 0.1;
}
.circle-shape-left-1 {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 875px;
    background-image: url(../img_2025/circle-left-1.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}
.clients-say .sec-heading h2 {
    color: var(--colorWhite);
    margin: 0 0 10px 80px;
}
.clients-say-box {
    background-color: var(--colorTheme);
    box-shadow: 0px 30px 60px 0px rgb(0 0 0 / 30%);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}   
.clients-say-slider.owl-carousel .owl-item .clients-say-box img {
    width: 48px;
}
.clients-say-box p {
    font-size: 24px;
    color: var(--colorWhite);
    line-height: 34px;
    margin: 13px 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.clients-say-slider {
    position: relative;
    z-index: 3;
}
.clients-say-slider.owl-carousel.owl-drag .owl-item {
    padding: 30px 80px 0;
}
.clients-say .owl-theme .owl-nav {
    margin-top: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.clients-say .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -94px;
    right: 275px;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    background-color: transparent;
    opacity: 1;
    width: 70px;
    height: 50px;
}
.clients-say .owl-carousel .owl-nav button.owl-prev .prev-slide {
    background-image: url(../img_2025/arrow-prev-white.png);
    background-repeat: no-repeat;
    text-align: right;
    background-position: left bottom 2px;
    width: 70px;
    height: 50px;
}
.clients-say .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -94px;
    right: 75px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorTheme);
    opacity: 1;
    width: 170px;
    height: 50px;
}
.clients-say .owl-carousel .owl-nav button.owl-next .next-slide {
    background-image: url(../img_2025/arrow-next-orange.png);
    background-repeat: no-repeat;
    text-align: left;
    background-position: right bottom 2px;
    width: 170px;
    height: 50px;
}
.clients-say-find {
    /* margin: -40px 80px 0; */
    margin: 40px 0px 0;
    float: right;
    position: relative;
    z-index: 3;
}
.circle-shape-right {
    position: absolute;
    z-index: 2;
    top: 40%;
    right: -90px;
    width: 600px;
    height: 600px;
    background-image: url(../img_2025/circle-right.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
/*-- End --*/

/*-- Start --*/
.worked-with {
    padding: 100px 0;
    background-color: var(--colorBlack);
}
.worked-with .sec-heading h2 {
    color: var(--colorWhite);
    margin-bottom: 0;
}
.worked-with .owl-carousel {
    z-index: 2;
}
.worked-with .carousel-wrap {
    max-width: 1354px;
    margin: 0 auto;
}
.worked-with-logo {
    position: relative;
    z-index: 1;
    padding: 30px 30px 50px;
}
.worked-with-logo ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.worked-with-logo ul li {
    background-color: var(--colorWhite);
    box-shadow: 0px 15px 30px #000;
    border-radius: 30px;
    width: calc(20% - 20px);
    /* width: calc(25% - 16px); */
    height: 132px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
    margin: 0!important;
}
/*-- End --*/

/*-- Start --*/
.candidate-diversity {
    background-color: var(--colorBlack);
    position: relative;
    z-index: 1;
}
.circle-shape-left-2 {
    position: absolute;
    z-index: -1;
    top: 78%;
    left: -10%;
    width: 1000px;
    height: 1000px;
    background-image: url(../img_2025/circle-left.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}
.circle-shape-right-2 {
    position: absolute;
    z-index: 0;
    top: -16%;
    right: -4%;
    width: 547px;
    height: 855px;
    background-image: url(../img_2025/circle-right.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.candidate-diversity-box {
    background-color: var(--colorTheme);
    border-radius: 40px;
    max-width: 1820px;
    margin: 0 auto;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.candidate-diversity-box .sec-heading h2 {
    position: relative;
}
.stats-list {
    margin-top: 40px;
    margin-bottom: 100px;
    white-space: nowrap;
    /*overflow-x: auto;
    overflow-y: hidden;*/
    padding-left: 30%;
}
.stats-box {
    position: relative;
    width: 344px;
    min-height: 260px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 50px;
}
.stats-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 260px;
    height: 260px;
    background-color: transparent;
    border: 15px solid #3f4454;
    border-radius: 50%;
    margin: 0 auto;
    opacity: 0.1;
    animation: zoomOut 0.4s forwards;
    transform: scale(1);
}
.stats-value {
    font-size: 80px;
    color: var(--colorWhite);
    line-height: 80px;
    margin-bottom: 0px;
    position: relative;
    padding-top: 100px;
    text-align: center;
    opacity: 0.6;
}
.stats-name {
    font-size: 22px;
    font-family: "Futura PT Book";
    color: var(--colorWhite);
    line-height: 22px;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
    opacity: 0.6;
}
.stats-box.active {
    width: 400px;
    margin-top: 0;
}
.stats-box.active::before { 
    width: 334px;
    height: 334px;
    opacity: 0.3;
    animation: zoomIn 0.4s forwards;
}
.stats-box.active .stats-value {
    font-size: 130px;
    padding-top: 130px;
    margin-bottom: 20px;
    opacity: 1;
} 
.stats-box.active .stats-name { 
    font-size: 25px;
    line-height: 25px;
    opacity: 1;
}
.stats-box {
    will-change: transform;
}
@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}
@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}
/*-- End --*/

/*-- Start --*/
.what-we-do {
    padding: 100px 0;
    background-color: var(--colorBlack);
    position: relative;
}
.what-we-do .sec-heading {
    position: relative;
    z-index: 2;
}
.what-we-do .sec-heading h2 {
    color: var(--colorWhite);
}
.what-we-do-cnt {
    position: relative;
    z-index: 2;
}
.what-we-do-cnt .accordion-item {
    background-color: var(--colorWhite);
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 20px 30px;
    border: 1px solid var(--colorTheme);
}
.what-we-do-cnt .accordion-button {
    font-size: 22px;
    font-weight: 600;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    text-transform: inherit;
    letter-spacing: 1px;
    padding: 0;
    background-color: var(--colorWhite);
    box-shadow: none;
}
.what-we-do-cnt .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\ea62";
    transform: unset;
}
.what-we-do-cnt .accordion-button::after {
    content: "\ea5f";
    background-image: none;
    font-size: 28px;
    font-weight: 600;
    font-family: "tabler-icons" !important;
    color: var(--colorBlack);
    line-height: 1.25rem;
    transition: all 0.4s ease-in-out;
}
.what-we-do-cnt .accordion-body {
    font-size: 20px;
    font-family: "Futura PT Book";
    line-height: 30px;
    color: var(--colorBlack);
    padding: 15px 0 0;
}
.circle-border {
    position: absolute;
    z-index: 1;
    top: -3%;
    right: -18%;
    width: 800px;
    height: 800px;
    background-image: url(../img_2025/circle-border.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/*-- End --*/

/*-- Start --*/
.who-we-are {
    padding: 100px 0;
    background-color: var(--colorBlack);
    position: relative;
}
.who-we-are .star-5 {
    z-index: 0;
}
.who-we-are .thm-btn {
    position: relative;
    z-index: 1;
}
.star-1 {
    position: absolute;
    z-index: 1;
    top: -24%;
    left: -26%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 26%;
    opacity: 0.2;
    transform: rotate(95deg);
}
.who-we-are .sec-heading h2 {
    color: var(--colorWhite);
    position: relative;
    z-index: 1;
}
.meet-our-team-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.meet-our-team-box {
    background-color: var(--colorWhite);
    box-shadow: 0 30px 60px rgb(0 0 0 / 30%);
    border-radius: 30px 30px 30px 0;
    padding: 15px;
    width: calc(20% - 20px);
    margin-bottom: 30px;
}
.meet-our-team-slider .meet-our-team-box {
    width: 100%;
    box-shadow: 0 0px 10px rgb(0 0 0 / 30%);
}
.meet-our-team-box img {
    width: 100%;
    height: 189px;
    object-fit: cover;
    border-radius: 30px 30px 30px 0;
}
.meet-our-team-box h6 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Futura PT Demi";
    color: var(--colorBlack);
    text-transform: capitalize;
    margin: 15px 0 0;
}
.meet-our-team-box span {
    font-size: 16px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
}
/*-- End --*/

/*-- Start --*/
.associations {
    padding: 100px 0 234px;
    background-color: var(--colorBlack);
    position: relative;
}
.star-right-2 {
    position: absolute;
    z-index: 0;
    top: -100%;
    right: -32%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 31%;
    opacity: 0.1;
    transform: rotate(39deg);
}
.associations .sec-heading {
    width: 350px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.associations .sec-heading h2 {
    color: var(--colorWhite);
}
.associations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}
.associations-box {
    border-radius: 15px;
    background-color: var(--colorWhite);
    box-shadow: 0px 30px 60px 0px rgb(0 0 0 / 30%);
    width: 42.5%;
    height: 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.associations-box img {
    filter: grayscale(100%);    
}
.associations-box:hover img {
    filter: grayscale(0%);    
    transition: all 0.4s ease-in-out;
}
/* .associations-box:hover .associations-popup {    
    display: block;
} */
/* .associations-popup {
    background-color: var(--colorWhite);
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    display: none;
    transform: translate(-0%, -0%);
    cursor: pointer;
} */
.associations-popup img {
    margin-bottom: 20px;
    filter: grayscale(0%);
}
.associations-popup p {
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 0;
}
.associations-box {
    overflow: hidden;
}
.associations-popup {
    background-color: var(--colorWhite);
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}
.associations-box:hover .associations-popup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/*-- End --*/

/*-- Start --*/
.join-us {
    position: relative;
    padding: 80px 0 154px;
    /* background-image: url(../img_2025/join-us.jpg); */
    background-color: var(--colorTheme);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(80% 100% at bottom);
    margin-top: -134px;
}
.join-us::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(255 255 255 / 46%); */
}
.join-us .sec-heading {
    width: 350px;
    margin: 0 0 0 135px;
    position: relative;
    z-index: 1;
}
.join-us .sec-heading h2 {
    color: var(--colorWhite);
    margin-bottom: 0;
}
.join-us-cnt {
    position: relative;
    z-index: 1;  
    margin-right: 75px;
}
.join-us-cnt p {
    font-size: 20px;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 30px;
}
.join-us-cnt a{
	color: var(--colorWhite);
}
.join-us-cnt .thm-btn-2 {
    float: right;
    margin-top: 10px;
}
/*-- End --*/

/*-- Start --*/
.appointment-role {
    padding: 0 0 100px;
    margin-bottom: 100px;
}
.appointment-role-bg {
    background-image: url(../img_2025/appointment-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 300px 0;
    height: 100vh;
    border-bottom: 12px solid var(--colorBlack);
    border-right: 12px solid var(--colorBlack);
    position: sticky;
    z-index: -1;
    top: 0;
}
.appointment-details {
    margin-top: 140px;
    padding: 0 50px 0 50px;
}
.appointment-details li {
    font-family: 'futura-pt-book';
    font-size: 18px;
    color: var(--colorBlack);
}
.appointment-title {
    margin-bottom: 20px;
}
.appointment-title h4 {
    font-size: 26px;
    font-weight: 500;
    color: var(--colorBlack);
    padding-bottom: 5px;
    margin-bottom: 0px;
}
.appointment-title h6 {
    font-size: 20px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 15px;
}
.appointment-title h6 span {
    font-size: 26px;
    font-weight: 400;
    display: block;
}
.appointment-details .nav-tabs {
    border: none;
    background-color: var(--colorBlack);
    border-radius: 30px 0 0 30px;
    margin-bottom: 20px;
    position: relative;
}
.appointment-details .nav-tabs::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -62px;
    width: 100%;
    height: 100%;
    background-color: var(--colorBlack);
    border-radius: 30px 0 0 30px;
}
.appointment-details .nav-tabs .nav-link {
    background: transparent;
    font-size: 26px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    color: var(--colorWhite);
    padding: 9px 30px 5px;
    margin-right: 0px;
    margin-bottom: 0px;
    border: none;
    border-radius: 0;
}
.appointment-details .nav-tabs .nav-link.active {
    color: var(--colorTheme);
}
.appointment-details .nav-tabs .nav-link:hover {
    color: var(--colorTheme);
}
.appointment-details .tab-content .nav-tabs {
    margin-bottom: 0px;
    border: none;
}
.appointment-cnt h5 {
    font-size: 26px;
    font-weight: 400;
    color: var(--colorBlack);
    margin-bottom: 10px;
}
.appointment-cnt p {
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 20px;
}

.old-job .appointment-cnt h5 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.old-job .appointment-cnt p {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 15px;
}


.appointment-cnt b, 
.appointment-cnt strong {
    font-family: "Futura PT Demi";
}
.appointment-cnt ul {
    margin-bottom: 30px;
    padding-left: 0px;
    list-style-type: none;
}
.appointment-cnt ul li {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    line-height: 30px;
    padding-left: 16px;
    position: relative;
}
.appointment-cnt ul li::before {
    content: "-";
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 30px;
    color: var(--colorBlack);
}
.appointment-cnt .appointment-img ul {
    padding: 20px 0;
    margin: 0;
    list-style-type: none;
    display: inline-grid;
    grid-template-columns: auto auto auto;
    border-top: 1px solid var(--colorBlack);
    border-bottom: 1px solid var(--colorBlack);
}
.old-job .appointment-cnt ul li {
    font-size: 18px;
    line-height: normal;
}
.br-t1 {
    border-top: 1px solid var(--colorBlack);
}
.br-b1 {
    border-bottom: 1px solid var(--colorBlack);
}
.appointment-cnt .appointment-img {
    margin-bottom: 30px;
}
.appointment-cnt .appointment-img ul li {
    width: 100%;
    padding-left: 0;
}
.appointment-cnt .appointment-img ul li::marker {
    content:"";
}
.appointment-cnt .appointment-img ul li img {
    width: 100%;
}
.appointment-cnt .thm-btn:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
}
/*-- End --*/

/*-- Start --*/
.page-banner {
    position: relative;
    background-color: var(--colorBlack);
    padding: 250px 0 50px;
}
.page-heading {
    position: relative;
    z-index: 1;
}
.page-heading h1 {
    font-size: 80px;
    color: var(--colorWhite);
    line-height: 80px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.page-heading p {
    font-size: 20px;
    color: var(--colorWhite);
    line-height: 30px;
    margin: 0px 0px 30px;
}
.inner-service {
    background-color: var(--colorBlack);
    position: relative;
}
.circle-top-right {
    position: absolute;
    z-index: 0;
    top: -8%;
    right: -22%;
    width: 1545px;
    height: 1545px;
    background-image: url(../img_2025/circle-top-right.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.inner-service-box-left {
    background-color: var(--colorWhite);
    border-radius: 80px 0 80px 0;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}
.inner-service-box-left-cnt {
    margin: 50px;
    max-height: 600px;
    overflow: auto;
    position: relative;
}
.inner-service-box-left-cnt h2 {
    font-size: 60px;
    color: var(--colorBlack);
    line-height: 60px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
.inner-service-box-left-cnt p {
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
    margin: 0px 0px 30px;
}
.inner-service-box-left-cnt p:last-child {
    margin-bottom: 0;
}
.inner-service-box-left-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 80px 0 80px 0;
}
.inner-service-box-left-cnt ul li {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    line-height: 30px;
    margin: 0 0 15px;
}
.inner-service-box-right {
    background-color: var(--colorWhite);
    border-radius: 0 80px 0 80px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}
.inner-service-box-right-cnt {
    margin: 50px;
    max-height: 600px;
    overflow: auto;
}
.inner-service-box-right-cnt h2 {
    font-size: 60px;
    color: var(--colorBlack);
    line-height: 60px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
.inner-service-box-right-cnt p {
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
    margin: 0px 0px 30px;
}
.inner-service-box-right-cnt p:last-child {
    margin-bottom: 0;
}
.inner-service-box-right-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 0 80px 0 80px;
}
.inner-service-box-right-cnt ul {
    margin-bottom: 0;
}
.inner-service-box-right-cnt ul li {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    line-height: 30px;
    margin: 0 0 15px;
}
.inner-service .associations {
    padding: 100px 0 205px;
    background-color: var(--colorWhite);
    clip-path: ellipse(80% 100% at bottom);
}
.inner-service .associations .sec-heading h2 {
    color: var(--colorBlack);
}
.inner-service .associations .sec-heading p {
    color: var(--colorBlack);
}
.latest-roles .circle-shape-left-2 {
    position: absolute;
    z-index: 0;
    top: 35%;
    left: -28%;
    width: 1545px;
    height: 1545px;
    background-image: url(../img_2025/circle-left.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}
.latest-roles .circle-shape-right-2 {
    position: absolute;
    z-index: 0;
    top: -30%;
    right: -3%;
    width: 700px;
    height: 700px;
    background-image: url(../img_2025/circle-right.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.candidate-diversity .circle-right-border {
    position: absolute;
    z-index: 0;
    top: -6%;
    right: -26%;
    width: 955px;
    height: 955px;
    background-image: url(../img_2025/circle-border.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.inner-service .view-all-roles {
    position: relative;
    z-index: 2;
}
/*-- End --*/

/*-- Start --*/
.news-events {
    padding: 50px 0 170px;
    background-color: var(--colorBlack);
}
.news-events .gx-5 {
    --bs-gutter-x: 70px;
}
.news-events-box {
    background-color: var(--colorWhite);
    height: 100%;
    border-radius: 60px 0 60px 0;
    box-shadow: 10px 17px 34px rgb(33 31 31 / 20%);
    position: relative;
    z-index: 2;
}
.news-events-box:hover {
    box-shadow: 10px 17px 34px rgb(33 31 31 / 63%);
    transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out; 
    -webkit-transition: all 0.4s ease-in-out;
}
.news-events-box-content {
    height: 100%;
    display: flex;
    flex-direction: column;  
}
.news-content {
    margin: 50px 30px 0px;
}
.read-more {
    margin-top: auto!important;
    margin: 0px 30px 30px;
}
.news-events-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 60px 0 0;
    padding: 33%;
}
.news-events-box-content h6 {
    font-size: 24px;
    font-weight: 500;
    color: var(--colorBlack);
    text-transform: uppercase;
    margin-bottom: 0;
}
.news-events-box-content .news-title {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 500;
    color: var(--colorBlack);
    padding-bottom: 15px;
    margin-bottom: 10px;
    margin-right: 20px;
}
.news-events-box-content .news-title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 10%;
    background: var(--colorTheme);
}
.news-events-box-content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.custom-pagination {
    position: relative;
    z-index: 2;
}
.custom-pagination ul {
    margin: 0 0 50px;
}
.custom-pagination .page-item:not(:first-child) .page-link {
    margin-left: 8px;
}
.custom-pagination .page-link {
    font-size: 18px;
    color: var(--colorWhite);
    background-color: var(--colorBlack);
    border: 2px solid var(--colorWhite);
    padding: 2px 12px;
}
.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link {
    border-radius: 0;
}
.custom-pagination .active>.page-link, .page-link.active {
    background-color: var(--colorTheme);
    border-color: var(--colorTheme);
}
.custom-pagination .page-link:hover {
    color: var(--colorBlack);
    background-color: var(--colorWhite);
    border-color: var(--colorWhite);
}
/*-- End --*/

/*-- Start --*/
.news-detail {
    position: relative;
    background-color: var(--colorBlack);
    padding: 250px 0 50px;
}
.star-right-1 {
    position: absolute;
    z-index: 0;
    top: -1%;
    right: -42%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(60deg);
    padding: 44%;
    opacity: 0.1;
}
.sold-star-right {
    position: absolute;
    z-index: 0;
    top: -104%;
    right: -42%;
    background-image: url(../img_2025/sold-star.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    padding: 44%;
    opacity: 0.1;
}
.news-detail .gx-5 {
    --bs-gutter-x: 70px;
}
.news-detail h1 {
    font-size: 64px;
    color: var(--colorWhite);
    line-height: 80px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}
.news-detail-box {
    /* background-color: var(--colorBlack); */
    /* border-radius: 60px 0 60px 0; */
    /* box-shadow: 10px 17px 34px rgb(33 31 31 / 20%); */
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}
.news-detail-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 60px 0 0;
    padding: 14%;
}
.news-detail-cnt {
    padding: 60px;
}
.news-detail-cnt p {
    font-size: 20px;
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 15px;
}
.news-detail-cnt ul {
    padding-left: 30px;
}
.news-detail-cnt ul li {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorWhite);
    line-height: 30px;
    margin-bottom: 10px;
}
.news-detail-cnt a {
    color: var(--colorTheme);
}
.star-left-1 {
    position: absolute;
    z-index: 1;
    bottom: -3%;
    left: -43%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(60deg);
    padding: 44%;
    opacity: 0.1;
}
/*-- End --*/

/*-- Start --*/
.testimonial {
    position: relative;
    background-color: var(--colorBlack);
    padding: 250px 0 50px;
}
.testimonial-box {
    background-color: var(--colorWhite);
    border-radius: 60px 0 60px 0;
    box-shadow: 10px 17px 34px rgb(33 31 31 / 20%);
    position: relative;
    padding: 60px 50px 50px;
}
.testimonial-list {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--colorTheme);
    padding-bottom: 30px;
    margin-bottom: 40px;
}   
.testimonial-box .testimonial-list:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.testimonial-cnt {
    width: calc(100% - 225px);
}
.testimonial-cnt p {
    width: calc(100% - 80px);
    position: relative;
    margin: 0 auto 20px;
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
}
.testimonial-cnt p::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -40px;
    width: 19px;
    height: 16px;
    background-image: url(../img_2025/quote-left-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.testimonial-cnt p::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -40px;
    width: 19px;
    height: 16px;
    background-image: url(../img_2025/quote-right-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.testimonial-cnt h6 {
    font-size: 24px;
    color: var(--colorBlack);
    margin-left: 40px;
    margin-bottom: 0;
}
.testimonial-profile {
    margin: 0 auto;
}
.testimonial-profile img {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 50%;
}
/*-- End --*/

/*-- Start --*/
.board-practice {
    position: relative;
    z-index: 1;
}
.board-practice-box {
    background-color: var(--colorWhite);
    border-radius: 60px 0 60px 0;
    padding: 50px;
    margin-bottom: 80px;
    position: relative;
}
.board-practice-box h3 {
    font-size: 32px;
    color: var(--colorBlack);        
    margin-bottom: 16px;
}
.board-practice-box p {
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
    margin: 0 0 20px;
}  
.board-practice-box p a,
.board-practice-box h4 a {
    color: var(--colorTheme);
}
.board-practice-box h4 {
    font-size: 24px;
    color: var(--colorBlack);        
    margin-bottom: 0px;
}             
.board-practice-box ul {
    padding-left: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}
.board-practice-box ul li {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 10px;
    width: calc(50% - 15px);
}
.sold-star-right-2 {
    position: absolute;
    z-index: 0;
    top: -70%;
    right: -30%;
    background-image: url(../img_2025/sold-star.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-27deg);
    padding: 40%;
    opacity: 0.2;
}
.sold-star-right-3 {
    position: absolute;
    z-index: 0;
    top: -294%;
    right: -25%;
    background-image: url(../img_2025/sold-star.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-24deg);
    padding: 36%;
    opacity: 0.2;
}
.board-practice-main {
    background-color: var(--colorBlack);
    position: relative;
}
.board-practice-main .candidate-diversity {
    position: relative;
    background-color: transparent;
    z-index: 2;
    margin-bottom: 80px;
}
.board-practice-main .view-all-roles {
    position: relative;
    z-index: 2;
}
.board-practice-main .latest-roles {
    padding: 20px 0 0;
}
.sold-star-right-4 {
    position: absolute;
    z-index: 0;
    top: -74%;
    right: -25%;
    background-image: url(../img_2025/sold-star.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-24deg);
    padding: 36%;
    opacity: 0.3;
}
.star-3 {
    position: absolute;
    z-index: 0;
    top: 12%;
    left: -20%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(45deg);
    padding: 32%;
    opacity: 0.1;
}
.star-4 {
    position: absolute;
    z-index: 1;
    top: -59%;
    left: -26%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(93deg);
    padding: 32%;
    opacity: 0.1;
}
.star-5 {
    position: absolute;
    z-index: 1;
    top: -250%;
    right: -30%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(38deg);
    padding: 30%;
    opacity: 0.1;
}
.board-practice-main .who-we-are {
    margin-bottom: 135px;
}
/*-- End --*/

/*-- Start --*/
.job-search-main {
    background-color: var(--colorBlack);
    position: relative;
}
.job-search .gx-5 {
    --bs-gutter-x: 75px;
}
.job-search .roles-box {
    height: 100%;
    min-height: 320px;
    margin-bottom: 0;
}
.subscription-order-form {
    margin-bottom: 40px;
    min-height: 31px;
}
.subscription-order-form ul li {
    cursor: pointer;
    font-size: 18px;
    color: var(--colorWhite);
    border-right: 2px solid var(--colorTheme);
    padding-left: 20px;
    padding-right: 20px;
}
.subscription-order-form ul li:last-child {
    padding-right: 0;
    border-right: 0;
    margin-left: auto;
}
.search-textbox i {
    margin-right: 5px;
}
.search-textbox .search-text {
    display: none;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid var(--colorTheme);
    border-radius: 0;
    color: var(--colorWhite);
}
.category-box {
    padding: 20px;
    width: 78%;
    background-color: var(--colorWhite);
    position: absolute;
    left: -12px;
    z-index: 10000;
    box-shadow: 5px 10px #888888;
    box-shadow: 1px 7px 30px -7px rgb(0 0 0 / 73%);
    top: 37px;
    right: 12px;
    border-radius: 20px;
    margin-left: auto;
    display: none;
}
.category-box label {
    display: contents;
    margin-left: 10px;
}
.category-box label img {
    padding-left: 10px;
}
.select-sector {
    font-size: 18px;
    color: var(--colorTheme);
    display: flex;
    align-items: center;
}
.select-sector i {
    font-size: 24px;
    margin-left: 10px;
    margin-top: -3px;
}
.select-sector i:last-child {
    display: none;
}
.search-btn {
    background-color: var(--colorTheme);
    font-size: 20px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0px;
    border: none;
    border-radius: 5px;
    padding: 7px 10px 3px;
    display: inline-block;
}
.search-btn:hover {
    background-color: var(--colorBlack);
    transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out; 
    -webkit-transition: all 0.4s ease-in-out;
}
.pa-10 {
    padding: 10px;
}
.category-box .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}
.category-box .form-check-input {
    width: 22px;
    height: 22px;
    margin-top: 0px;
    vertical-align: middle;
    background-color: var(--colorWhite);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #C8C8C8;
}
.category-box .form-check-input:checked {
    background-color: var(--colorTheme);
    border-color: var(--colorTheme);
}
.job-search {
    position: relative;
    margin-bottom: 185px;
}
.job-search .roles-box {
    position: relative;
    z-index: 2;
}
.job-search .star-left-1 {
    position: absolute;
    z-index: 1;
    bottom: 18%;
    left: -24%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-28deg);
    padding: 26%;
    opacity: 0.1;
}
.job-search .star-right-2 {
    position: absolute;
    z-index: 1;
    bottom: -153%;
    right: -24%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30%;
    opacity: 0.1;
    transform: rotate(100deg);
}
/*-- End --*/

/*-- Start --*/
.who-we-are-main {
    background-color: var(--colorBlack);
    position: relative;
}
.who-we-are-list {
    position: relative;
    padding-bottom: 175px;
}
.who-we-are-list .star-left-1 {
    position: absolute;
    z-index: 1;
    bottom: 10%;
    left: -24%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-28deg);
    padding: 33%;
    opacity: 0.1;
}
.who-we-are-list .star-right-2 {
    position: absolute;
    z-index: 1;
    bottom: -120%;
    right: -24%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30%;
    opacity: 0.1;
    transform: rotate(100deg);
}
/*-- End --*/

/*-- Start --*/
.custom-modal .modal {
    position: fixed !important;
}
.modal-content {
    border: none;
}
.close.team-modal-close {
    position: absolute;
    right: 0;
    z-index: 10000;
}
.team-modal-close {
    width: 40px;
    height: 30px;
    color: var(--colorWhite);
    text-shadow: none;
    background-color: var(--colorTheme);
    border: none;
    opacity: 1;
    top: 0px;
    right: 45px;
    font-size: 38px;
    font-weight: unset;
    border-radius: 0 5px 0 0;
    display: flex;
    align-items: center;
}
.modal-team-img img {
    /* width: 188px;
    height: 193px; */
    margin-bottom: 20px;
    display: block;
    border-radius: 5px;
}
.modal-team-box h3 {
    font-size: 36px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 0;
}
.modal-team-box span {
    font-size: 18px;
    font-family: "Futura PT Book";
    color: var(--colorTheme);
    margin-bottom: 10px;
    display: inline-block;
}
.modal-team-box .modal-team-desc {
    font-size: 18px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    margin-bottom: 20px;
}
.modal-contact-mark {
    background-color: var(--colorTheme);
    padding: 15px;
    border-radius: 5px;
}
.modal-contact-mark h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--colorWhite);
    margin-bottom: 6px;
}
.modal-contact-mark p {
    font-size: 16px;
    color: var(--colorWhite);
}
.modal-contact-mark p:last-child {
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.contact-us-main {
    background-color: var(--colorBlack);
    position: relative;
}
.contact-us {
    position: relative;
    padding-bottom: 235px;
}
.contact-us .star-left-1 {
    position: absolute;
    z-index: 1;
    bottom: 6%;
    left: -24%;
    background-image: url(../img_2025/star-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-28deg);
    padding: 24%;
    opacity: 0.1;
}
.contact-us .star-right-2 {
    position: absolute;
    z-index: 1;
    bottom: -153%;
    right: -24%;
    background-image: url(../img_2025/star-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30%;
    opacity: 0.1;
    transform: rotate(100deg);
}
.contact-us .nav {
    display: flex;
    align-items: center;
    justify-content: end;
}
.contact-us .nav-tabs {
    border: none;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}
.contact-us .nav-tabs .nav-link {
    font-size: 30px;
    color: var(--colorTheme);
    padding: 0 20px;
    cursor: pointer;
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-right: 2px solid var(--colorWhite);
}
.contact-us .nav-tabs .nav-item:last-child .nav-link {
    border-right: 0;
}
.contact-us .nav-tabs .nav-item.show .nav-link, 
.contact-us .nav-tabs .nav-link.active {
    color: var(--colorWhite);
}
.contact-us-box {
    background-color: var(--colorWhite);
    border-radius: 60px 0 60px 0;
    position: relative;
}
.contact-us-form {
    padding: 50px;
    position: relative;
    z-index: 2;
}
.contact-us-cnt {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    line-height: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--colorTheme);
}
.form-note {
    font-size: 18px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    line-height: 28px;
    margin-bottom: 20px;
}
.contact-us-form .form-control {
    margin-bottom: 25px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    border-radius: 15px 0 15px 0;
    border: 1px solid #d9dadd;
    height: 50px;
}
.contact-us-form textarea.form-control {
    height: 200px;
}
.contact-us-form .form-control:focus {
    border-color: var(--colorTheme);
    box-shadow: none;
}
.contact-us-form .thm-btn:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
}
.google-map-iframe {
    height: 100%;
    position: relative;
    z-index: 2;
}
.google-map-iframe iframe {
    border-radius: 60px 0 60px 0;
}
/*-- End --*/

/*-- Start --*/
.sector-logo-list {
    position: relative;
    z-index: 1;
    padding: 0 0 70px;
}
.sector-logo-list ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sector-logo-list ul li {
    background-color: var(--colorWhite);
    box-shadow: 0px 15px 30px #000;
    border-radius: 30px;
    width: calc(16.6% - 16px);
    height: 132px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
}
/*-- End --*/

/*-- Start --*/
.apply-job-modal .modal-lg {
    --bs-modal-width: 1356px;
}
.apply-job-popup .nav {
    display: flex;
    align-items: center;
}
.apply-job-popup .nav-tabs {
    border: none;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}
.apply-job-popup .nav-tabs .nav-link {
    font-size: 24px;
    line-height: 24px;
    color: var(--colorBlack);
    padding: 0 20px;
    cursor: pointer;
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-right: 2px solid var(--colorBlack);
}
.apply-job-popup .nav-tabs .nav-item:last-child .nav-link {
    border-right: 0;
}
.apply-job-popup .nav-tabs .nav-item:first-child .nav-link {
    padding-left: 0;
}
.apply-job-popup .nav-tabs .nav-item.show .nav-link, 
.apply-job-popup .nav-tabs .nav-link.active {
    color: var(--colorTheme);
}
.apply-job-modal .team-modal-close { 
    border-radius: 0;
}
.apply-job-modal .modal-content {
    border-radius: 60px 0;
}
.apply-job-modal .modal-body {
    padding: 30px 50px 50px;
}
.apply-job-popup-cnt h3 {
    font-size: 32px;
    color: var(--colorBlack);
    margin-bottom: 20px;
} 
.apply-job-popup-cnt p {
    font-size: 20px;
    color: var(--colorBlack);
    line-height: 30px;
    margin-bottom: 20px;
}
.apply-job-popup-cnt p a {
    color: var(--colorTheme);
}
.hr-thm {
    border: 1px solid var(--colorTheme);
    margin-bottom: 20px;
}
.apply-job-popup .form-control {
    margin-bottom: 0px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    border-radius: 15px 0 15px 0;
    border: 1px solid #d9dadd;
    height: 50px;
}
.apply-job-popup .col-md-6.col-lg-3 .wpcf7-form-control-wrap {
    margin-bottom: 24px;
    display: block;
}
.apply-job-popup .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
    position: absolute;
    z-index: 1;
    top: 50px;
    left: 0;
    right: 0;
}
.upload-box .wpcf7-form-control-wrap {
    position: unset;
}
.apply-job-popup #message-box .wpcf7-form-control-wrap {
    margin-bottom: 24px;
    display: block;
}
.apply-job-popup .form-control:focus {
    border-color: var(--colorTheme);
    box-shadow: none;
}
.apply-job-popup .upload-box {
    position: relative;
    text-align: center;
}
.apply-job-popup .uplbtn {
    position: relative;
    /* overflow: hidden; */
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--colorBlack);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    display: inline-block;
}
.apply-job-popup .uplbtn p {
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 0;
}
.apply-job-popup .uplbtn input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    background-color: transparent;
    height: -webkit-fill-available!important;
}
.apply-job-popup .filename {
    font-size: 14px;
    font-family: "Futura PT Book";
    color: var(--colorBlack);
    text-transform: none;
    text-align: center;
    margin: 0 0 16px;
}
.apply-job-popup .form-label {
    font-size: 18px;
    font-family: "Futura PT Book";
    font-weight: 600;
    color: var(--colorBlack);
    text-transform: capitalize;
    display: block;
    line-height: normal;
}
.apply-job-popup .form-check-input {
    width: 24px;
    height: 24px;
    background-color: var(--colorWhite);
    border-color: var(--colorTheme);
    margin-top: 0;
}
.apply-job-popup .form-check-input:focus {
    border-color: var(--colorTheme);
    box-shadow: none;
}
.apply-job-popup .form-check-input:checked {
    background-color: var(--colorTheme);
    border-color: var(--colorTheme);
}
.apply-job-popup .form-check-label {
    font-size: 18px;
    font-family: "Futura PT Book";
    font-weight: 500;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-left: 10px;
    cursor: pointer;
}
.apply-job-popup .form-check-input:checked[type=radio] {
    background-image: url(../img_2025/radio-btn.svg);
    background-color: var(--colorWhite);
    border-color: var(--colorTheme);
}
.apply-job-popup .form-check-input[type=radio] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    background-color: var(--colorWhite);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #d9dadd;
    cursor: pointer;
    margin-top: 0;
}
.apply-job-popup .thm-btn:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background-color: var(--colorBlack);
    color: var(--colorWhite);
}
span.wpcf7-list-item-label {
    font-size: 18px;
    font-family: "Futura PT Book";
    font-weight: 500;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-left: 10px;
    cursor: pointer;
}
.wpcf7-list-item {
    margin: 0 15px 0 0!important;
}
.equal-section-content h6 {
    font-size: 24px;
    color: var(--colorBlack);
}
/*-- End --*/

#cookie-law-info-again {
    right: 0 !important;
    margin: 0 auto!important;
    left: 0!important;
    width: fit-content!important;
}

/*-- Start --*/
.footer {
    margin: -104px 0 0;
}
/*.home-main .footer {
    margin: -104px 0 0;
}*/
.footer {
    padding: 50px 0 0;
    background-color: var(--colorBlack);
    clip-path: ellipse(80% 100% at bottom);
}
.footer .footer-logo img {
    width: 208px;
    margin-bottom: 30px;
}
.footer .footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 250px;
}
.footer .footer-contact-list .footer-contact {
    margin-bottom: 30px;
}
.footer .footer-contact-list .footer-contact h5 {
    font-size: 28px;
    color: var(--colorWhite);
    margin-bottom: 15px;
}
.footer .footer-contact-list .footer-contact i {
    font-size: 28px;
    color: var(--colorWhite);
    margin-right: 10px;
    line-height: 30px;
}
.footer .footer-contact-list .footer-contact a {
    font-size: 20px;
    font-family: "Futura PT Book";
    color: var(--colorWhite);
}
.footer .footer-contact-list .footer-contact a:hover {
    color: var(--colorTheme);
}
.footer .footer-btm {
    border-top: 1px solid #535765;
    padding: 30px 0;
    text-align: center;
    position: relative;
}
.footer .certified {
    position: absolute;
    top: 15px;
    right: 30px;
}
.footer .footer-btm .footer-link ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px;
}
.footer .footer-btm .footer-link ul li {
    padding: 0 35px 15px;
}
.footer .footer-btm .footer-link ul li a {
    font-size: 20px;
    color: var(--colorWhite);
}
.footer .footer-btm .footer-link ul li a:hover {
    color: var(--colorTheme);
}
.footer .footer-btm p {
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    color: var(--colorWhite);
    margin-bottom: 0;
}
/*-- End --*/









