*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: "Geist", sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: white;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 100px;
}

@media screen and (max-width: 1200px) {
    .container {
        padding-inline: 36px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-inline: 16px;
    }
}

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

.category-item {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
}

.category-item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.category-item.active,
.category-item:hover {
    background-color: rgba(255, 255, 255, 0.13);
}

.talent-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.49);
    border-radius: 12px;
    height: 100%;
}

.talent-card .personal-info {
    display: flex;
    align-items: center;
    gap: 9px;
}

.talent-card .personal-info .avatar img {
    height: 40px;
    width: 40px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.talent-card .personal-info .details {
    display: flex;
    flex-direction: column;
}

.talent-card .personal-info .details .talent {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.005em;
}

.talent-card .personal-info .details .country {
    font-size: 14px;
    line-height: 150%;
}

.talent-card .more-details div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.talent-card .more-details div i {
    font-size: 16px;
}

.talent-card .more-details div p {
    font-size: 14px;
    line-height: 120%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.talent-card .resume {
    border: none;
    background: none;
    font-size: 12px;
    line-height: 120%;
    color: #fff;
    padding-block: 12px;
    border: 1px solid rgba(255, 255, 255, 0.49);
    border-radius: 8px;
    cursor: pointer;
}

.talent-card .resume:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.talent-card.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 240px;
}

.talent-card.loading p {
    color: #fff;
    font-size: 14px;
    animation: pulseOpacity 1s infinite ease-in-out;
}

.button {
    cursor: pointer;
}

.icon-button,
main section.talents .body .toolbar .filter-button {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    height: 28px;
    cursor: pointer;
    gap: 4px;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 0.02em;
    border: none;
    background: none;
    color: #fff;
}

.icon-button i,
main section.talents .body .toolbar .filter-button i {
    font-size: 20px;
    display: inline-block;
    padding-top: 4px;
}

.icon-button:hover,
main section.talents .body .toolbar .filter-button:hover {
    border-bottom: 1px solid #fff;
}

.external-btn {
    margin-inline: auto;
    color: #fff;
    text-decoration: none;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    padding: 12px 28px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.49);
    border-radius: 28px;
}

.external-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
}

.tag {
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tag span {
    font-size: 12px;
    line-height: 150%;
}

.logo {
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
}

.logo span {
    font-weight: bold;
}

@media screen and (max-width: 576px) {
    .logo {
        font-size: 12px;
    }
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-container button {
    display: inline-block;
    border: none;
    background: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.pagination-container button::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pagination-container button.active::before {
    width: 10px;
    height: 10px;
}

h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.01em;
}

h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.01em;
}

p.medium-light {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0.01em;
    line-height: 140%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 24px 0;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

nav.scroll {
    background: #938F75;
}

nav .nav-items {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav .nav-items li {
    list-style: none;
}

nav .nav-items a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 24px;
    font-weight: 500;
    font-size: 18px;
}

nav .nav-items a.d-mobile {
    display: none;
}

nav .nav-items a:hover {
    background-color: rgba(12, 13, 14, 0.49);
}

@media screen and (max-width: 768px) {
    nav .nav-items a {
        padding: 22px 20px;
    }
}

@media screen and (max-width: 576px) {
    nav .nav-items a {
        padding: 12px 8px;
    }

    nav .nav-items a:not(.d-mobile) {
        display: none;
    }

    nav .nav-items a.d-mobile {
        display: block;
        font-size: 10px;
    }
}

header {
    min-height: calc(100dvh - 20px);
    background: linear-gradient(180deg, rgba(12, 13, 14, 0.3) 10%, rgba(12, 13, 14, 0.5) 50%, #0C0D0E 100%), url("../images/nairobi_background.jpg") no-repeat center center/cover;
}

header .header-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 188px;
}

@media screen and (max-width: 768px) {
    header .header-content {
        padding-top: 160px;
    }
}

header .header-content .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

@media screen and (max-width: 768px) {
    header .header-content .text {
        width: unset;
    }
}

header .header-content .text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.01em;
}

header .header-content .cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 50%;
    position: relative;
}

@media screen and (max-width: 1024px) {
    header .header-content .cta {
        width: 80%;
        transform: unset;
    }
}

@media screen and (max-width: 768px) {
    header .header-content .cta {
        width: 100%;
        transform: unset;
    }
}

header .header-content .cta .email-field {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 12px;
    overflow: hidden;
}

header .header-content .cta .email-field input[type=text] {
    display: inline-block;
    border: none;
    outline: none;
    width: calc(100% - 152px);
    background: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
    padding: 12px 24px;
}

header .header-content .cta .email-field input[type=text]::-moz-placeholder {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

header .header-content .cta .email-field input[type=text]::placeholder {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

header .header-content .cta .email-field button {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    padding: 12px 24px;
    border-left: 1px solid #fff;
    cursor: pointer;
    height: 54px;
    flex-shrink: 0;
}

header .header-content .cta .error-text-container {
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    display: none;
}

header .header-content .cta .error-text {
    background-color: #A64444;
    padding: 10px 12px;
    border-radius: 20px;
    position: relative;
}

header .header-content .cta .error-text p {
    line-height: 150%;
    letter-spacing: 0.01em;
}

header .header-content .cta .error-text::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 13px;
    background: #A64444;
    top: -12px;
    left: 50%;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

header .header-content .cta p {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    gap: 180px;
    background-color: #0C0D0E;
    padding-bottom: 60px;
}

main section.intro .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

main section.intro .text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

main section.intro .cards {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 1024px) {
    main section.intro .cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    main section.intro .cards {
        grid-template-columns: 1fr;
    }
}

main section.intro .cards .card {
    color: inherit;
    text-decoration: none;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.49);
    padding: 28px;
    border-radius: 12px;
    display: flex;
    align-items: end;
    cursor: pointer;
    position: relative;
}

main section.intro .cards .card:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

main section.intro .cards .card .card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

main section.intro .cards .card.one {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../images/team_office.jpg") no-repeat center center/cover;
}

main section.intro .cards .card.two {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../images/team_space.jpg") no-repeat center center/cover;
}

main section.intro .cards .card.three {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../images/team_management.jpg") no-repeat center center/cover;
}

main section.talents {
    scroll-margin-top: 80px;
}

main section.talents .text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

main section.talents .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

main section.talents .body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

main section.talents .body .categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 0;
    text-align: center;
}

main section.talents .body .toolbar {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.49);
    border-radius: 8px;
}

main section.talents .body .toolbar .input-group {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    flex: 1;
}

main section.talents .body .toolbar .input-group input[type=text] {
    display: inline-block;
    border: none;
    outline: none;
    width: 100%;
    background: none;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 0.02em;
    line-height: 150%;
    color: #fff;
    padding-left: 12px;
}

main section.talents .body .toolbar .input-group i {
    font-size: 20px;
}

main section.talents .body .toolbar .filter-button {
    font-size: 18px;
    font-weight: 200;
    gap: 12px;
    padding: 24px;
    flex-direction: row-reverse;
    border-left: 1px solid rgba(255, 255, 255, 0.49);
}

main section.talents .body .toolbar .filter-button:hover {
    border-bottom: unset;
}

main section.talents .body .talents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

main section.talents .body .talents-empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    main section.talents .body .talents {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    main section.talents .body .talents {
        grid-template-columns: 1fr;
    }
}

main section.offices {
    scroll-margin-top: 80px;
}

main section.offices .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

main section.offices .text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

main section.offices .offices {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 576px) {
    main section.offices .offices {
        grid-template-columns: 1fr;
    }
}

main section.offices .offices-empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    font-size: 14px;
}

main section.offices .offices .office-card {
    display: flex;
    flex-direction: column;
    height: 372px;
    border: 1px solid rgba(255, 255, 255, 0.49);
    border-radius: 12px;
    justify-content: end;
    padding: 16px;
    position: relative;
    cursor: pointer;
}

main section.offices .offices .office-card.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main section.offices .offices .office-card.loading p {
    color: #fff;
    font-size: 14px;
    animation: pulseOpacity 1s infinite ease-in-out;
}

@keyframes pulseOpacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

main section.offices .offices .office-card:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

main section.offices .offices .office-card .card-text {
    font-size: 14px;
    line-height: 150%;
}

main section.offices .offices .office-card .card-text .semibold {
    font-weight: 600;
}

main section.offices .offices .office-card.one {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url("../images/team_space.jpg") no-repeat center center/cover;
}

main section.hqzen {
    scroll-margin-top: 80px;
}

main section.hqzen .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

main section.hqzen .text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

main section.hqzen .video-banner {
    position: relative;
    width: 100%;
    margin-inline: auto;
    z-index: 10;
}

main section.hqzen .video-banner video {
    display: block;
    width: 100%;
    border-radius: 12px;
}

main section.hqzen .video-banner video[poster] {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16/9;
}

main section.hqzen .video-banner .controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

main section.hqzen .video-banner .controls .play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: unset;
    outline: none;
    border: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 50%;
}

main section.hqzen .video-banner .controls .play-btn i {
    font-size: 60px;
}

footer {
    background: linear-gradient(180deg, #0C0D0E 0%, rgba(0, 0, 0, 0.5) 100%), url("../images/footer_bg.jpg") no-repeat center center/cover;
    padding-block: 120px;
    min-height: 600px;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

footer .cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 50%;
    transform: translateX(50%);
    position: relative;
}

@media screen and (max-width: 1024px) {
    footer .cta {
        width: 80%;
        transform: unset;
        margin-inline: auto;
    }
}

@media screen and (max-width: 768px) {
    footer .cta {
        width: 100%;
        transform: unset;
    }
}

footer .cta .email-field {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 12px;
    overflow: hidden;
}

footer .cta .email-field input[type=text] {
    display: inline-block;
    border: none;
    outline: none;
    width: calc(100% - 152px);
    background: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
    padding: 12px 24px;
}

footer .cta .email-field input[type=text]::-moz-placeholder {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

footer .cta .email-field input[type=text]::placeholder {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

footer .cta .email-field button {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    padding: 12px 24px;
    border-left: 1px solid #fff;
    cursor: pointer;
    height: 54px;
    flex-shrink: 0;
}

footer .cta .error-text-container {
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    display: none;
}

footer .cta .error-text {
    background-color: #A64444;
    padding: 10px 12px;
    border-radius: 20px;
    position: relative;
}

footer .cta .error-text p {
    line-height: 150%;
    letter-spacing: 0.01em;
}

footer .cta .error-text::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 13px;
    background: #A64444;
    top: -12px;
    left: 50%;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

footer .cta p {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

/*# sourceMappingURL=styles.css.map */
