/* Hero */

section.hero {
    margin-top: 120px;
    position: relative;
    padding: clamp(70px, 14vw, 140px) 0;
}

.hero-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero-image:after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 100%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
}

/* Apply for role & Meet our people tabs */

section.apply-and-meet {
    padding: clamp(30px, 6vw, 60px) 0;
    display: flex;
    flex-direction: column;
    background: #2B2B2B;
}

.apply-and-meet-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.apply-and-meet-tabs button {
    padding: clamp(15px, 3vw, 30px) clamp(20px, 4vw, 40px);
    border-radius: 34px;
    background: transparent;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: #000;
    text-align: center;
}

.apply-and-meet-tabs button:hover,
.apply-and-meet-tabs button.active {
    color: #E36F51;
}

.apply-for-role-content {
    padding: clamp(20px, 4vw, 40px);
    background: #2B2B2B;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 40px;
}

.apply-for-role-content a.button {
    padding: 15px 40px;
    align-items: center;
    border-radius: 34px;
    border: 2px solid #E36F51;
    background: rgba(255, 113, 13, 0.00);
    color: #fff;
    margin-top: 30px;
    display: inline-flex;
    width: fit-content;
    transition: 0.6s ease;
    text-decoration: none;
}

.apply-for-role-content a.button:hover {
    opacity: 0.9;
    background: #E36F51;
}

.apply-for-role-content-grid-2 {
    display: flex;
}

.apply-for-role-content-grid-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 980px) {
    .apply-for-role-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .apply-and-meet-tabs {
        flex-direction: column;
    }
}

/* Expectations from recruitment */

section.expectations {
    position: relative;
    padding: clamp(30px, 6vw, 60px) 0;
}

.expectations-repeater {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.single-expectation {
    border-radius: 10px;
    border: 2px solid #E36F51;
    background: rgba(217, 217, 217, 0.00);
    padding: clamp(12.5px, 2.5vw, 25px);
    display: flex;
    flex-direction: column;
}

.single-expectation h2 {
    color: #E36F51;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}

p#iterator {
    color: #E36F51;
    text-align: right;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    margin-top: auto;
}

@media (max-width: 1080px) {
    .expectations-repeater {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .expectations-repeater {
        grid-template-columns: 1fr;
    }
}

/* Join NSC */

section.join-nsc {
    position: relative;
    padding: clamp(50px, 10vw, 100px) 0;
}

.join-nsc-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.join-nsc-image:after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
}

.join-nsc-content {
    padding: clamp(25px, 5vw, 50px);
    background: #000;
    border-radius: 10px;
    position: relative;
}

.join-nsc-content a.button {
    padding: 15px 40px;
    align-items: center;
    border-radius: 34px;
    border: 2px solid #E36F51;
    background: rgba(255, 113, 13, 0.00);
    color: #fff;
    margin-top: 50px;
    display: flex;
    width: fit-content;
    transition: 0.6s ease;
}

.join-nsc-content a.button:hover {
    opacity: 0.9;
    background: #E36F51;
}

.join-nsc-content p {
    max-width: 514px;
}

.join-nsc-content h2 {
    margin-bottom: 15px;
}

/* Our Values */

.our-values-repeater {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.single-value {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: grid;
}

.single-value-main img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}

.single-value-main h2 {
    position: relative;
    display: flex;
    align-items: center;
}

.single-value-hover {
    grid-row: 1;
    grid-column: 1;
    padding: clamp(12.5px, 2.5vw, 25px);
    height: 100%;
    background: #1E1E1E;
    opacity: 0;
    pointer-events: none;
    transition: ease 0.6s;
    z-index: 1;
}

.single-value-main {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-row: 1;
    grid-column: 1;
    flex-direction: column;
    padding: clamp(20px, 4vw, 40px);
}

section.our_values {
    padding: clamp(25px, 5vw, 50px) 0;
}

.single-value:hover .single-value-hover {
    opacity: 1;
    pointer-events: all;
}

.single-value-main p {
    display: none;
}

@media (max-width: 1080px) {
    .our-values-repeater {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .our-values-repeater {
        grid-template-columns: 1fr;
    }

    .single-value-hover {
        display: none;
    }

    .single-value-main p {
        display: flex;
    }
}

/* Yassen Quote */

.yassen-quote-wrapper {
    border-radius: 10px;
    border: 1px solid #E36F51;
    background: rgba(43, 43, 43, 0.60);
    display: grid;
    grid-template-columns: auto 1fr;
}

.yassen-quote-content {
    display: flex;
    flex-direction: column;
    padding: clamp(25px, 5vw, 50px);
}

.yassen-quote-image img {
    width: 100%;
    display: flex;
    height: fit-content;
    margin-top: auto;
}

.yassen-quote-image {
    display: flex;
}

.yassen-quote-background img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    object-fit: contain;
    z-index: -1;
    margin: auto;
}

section.yassen_quote {
    position: relative;
    padding: clamp(25px, 5vw, 50px) 0;
}

@media (max-width: 1200px) {

    .yassen-quote-image img {
        width: 300px;
    }

}

@media (max-width: 980px) {
    .yassen-quote-wrapper {
        grid-template-columns: 1fr;
    }

    .yassen-quote-content {
        grid-row: 1;
    }
}

/* CTA */

section.cta {
    position: relative;
    padding: clamp(50px, 10vw, 100px) 0;
}

.cta-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-image:after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
}

.cta-content {
    padding: clamp(25px, 5vw, 50px);
    background: #000;
    border-radius: 10px;
    position: relative;
}

.cta-content a.button {
    padding: 15px 40px;
    align-items: center;
    border-radius: 34px;
    border: 2px solid #E36F51;
    background: rgba(255, 113, 13, 0.00);
    color: #fff;
    margin-top: 50px;
    display: flex;
    width: fit-content;
    transition: 0.6s ease;
}

.cta-content a.button:hover {
    opacity: 0.9;
    background: #E36F51;
}

.cta-content p {
    max-width: 514px;
}

.cta-content h2 {
    margin-bottom: 15px;
}

/* FAQs */

.faq-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(16px, 3.2vw, 32px);
    background: #2B2B2B;
    border-radius: 10px;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.faq-bottom {
    padding: clamp(16px, 3.2vw, 32px);
}

.faq-top-status {
    color: #E36F51;
    border: solid 1px #E36F51;
    border-radius: 100%;
    aspect-ratio: 1/1;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 40px;
}

.faqs-repeater {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

section.faqs {
    padding: clamp(50px, 10vw, 100px) 0;
}

.faq-top-title h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: auto;
    font-size: clamp(16px, 2.4vw, 24px);
}

.faq-top-title {
    display: flex;
}

/* Sign Off */

section.sign-off {
    padding: clamp(60px, 12vw, 120px) 0 clamp(80px, 16vw, 160px);
    position: relative;
}

.sign-off-background:after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.78) 100%);
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sign-off-background img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.sign-off-content {
    max-width: 636px;
}